From ff06ae7e8f350d40602722aaf5794738bd2c9f21 Mon Sep 17 00:00:00 2001 From: Moul <moul@moul.re> Date: Sun, 16 Feb 2020 18:46:42 +0200 Subject: [PATCH] [lint] Remove now useless configuration passed as args in the make rule - Join lines, '/' at the end is no more necessary --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index cc9d8872..bac812af 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: -- GitLab