From cb72b6b0c4d4e54b32488f793c577e58efbb88e9 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, E1101 pylint rules to override the dependencies import issue --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index c41262f6..1d77abee 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,E1101,C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613 --enable=C0121,C0202,C0321 --jobs=0 duniterpy/ + poetry run pylint --disable=E0401,E1101,C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613 --enable=C0121,C0202,C0321 --jobs=0 tests/ + poetry run pylint --disable=E0401,E1101,C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613 --enable=C0121,C0202,C0321 --jobs=0 examples/ # check format check-format: -- GitLab