diff --git a/Makefile b/Makefile
index cc9d88726b044b49dc0d4800bb3a3e3547172191..bac812af278b66adeb18d574e92781a7a8bd5e9b 100644
--- a/Makefile
+++ b/Makefile
@@ -20,9 +20,7 @@ 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 duniterpy tests examples
 
 # check format
 check-format: