Skip to content

Commit 9abb335

Browse files
author
Alec Leamas
committed
Makefile: update for new pylint binary name, update pylint.conf
1 parent cc20cf4 commit 9abb335

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Standard Makefile supports targets build, install and clean + static
33
# code checking. make install respects DESTDIR, build and install respects
44
# V=0 and V=1
5-
5+
PYLINT = pylint-3
66

77
ifeq ($(DESTDIR),)
88
DESTDIR = $(CURDIR)/install
@@ -31,7 +31,7 @@ clean: .phony
3131
python3 setup.py clean
3232

3333
pylint: $(PYTHON_SRC)
34-
-PYTHONPATH=$(CURDIR)/lib python3-pylint \
34+
-PYTHONPATH=$(CURDIR)/lib $(PYLINT) \
3535
--rcfile=pylint.conf \
3636
--msg-template='$(pylint_template)' \
3737
$?

pylint.conf

+3-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ load-plugins=
3535
# --enable=similarities". If you want to run only the classes checker, but have
3636
# no Warning level messages displayed, use"--disable=all --enable=classes
3737
# --disable=W"
38-
disable=locally-disabled
38+
disable=locally-disabled,invalid-name,duplicate-code
39+
# duplicate-code broken for now: https://github.com/PyCQA/pylint/issues/214
40+
3941

4042
#disable=locally-disabled,too-few-public-methods,locally-enabled,bad-whitespace
4143
# bad-whitespace: See https://github.com/PyCQA/pylint/issues/238

0 commit comments

Comments
 (0)