From f8ed606f76bbbd257799f064a82f15d54ffb2963 Mon Sep 17 00:00:00 2001
From: Moul <moul@moul.re>
Date: Sat, 15 Feb 2020 22:12:50 +0100
Subject: [PATCH] [ci] #118: Disable E0401 pylint rule to override the 
 dependencies import issue

---
 Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index c41262f6..c261a4e8 100644
--- a/Makefile
+++ b/Makefile
@@ -20,9 +20,9 @@ mypy:
 
 # check code errors
 pylint:
-	poetry run pylint --disable=C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613 --enable=C0121,C0202,C0321 --jobs=0 duniterpy/
-	poetry run pylint --disable=C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613 --enable=C0121,C0202,C0321 --jobs=0 tests/
-	poetry run pylint --disable=C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613 --enable=C0121,C0202,C0321 --jobs=0 examples/
+	poetry run pylint --disable=E0401,C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613 --enable=C0121,C0202,C0321 --jobs=0 duniterpy/
+	poetry run pylint --disable=E0401,C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613 --enable=C0121,C0202,C0321 --jobs=0 tests/
+	poetry run pylint --disable=E0401,C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613 --enable=C0121,C0202,C0321 --jobs=0 examples/
 
 # check format
 check-format:
-- 
GitLab