From 7bebba0c7643b85ea2ab2f089c79bfe90ed2880d Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 31 Dec 2016 22:28:09 +0200 Subject: Add more automated checking, to setup.py --- pylint.conf | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 pylint.conf (limited to 'pylint.conf') diff --git a/pylint.conf b/pylint.conf new file mode 100644 index 0000000..146a84e --- /dev/null +++ b/pylint.conf @@ -0,0 +1,37 @@ +[MASTER] +persistent=no + +[MESSAGES CONTROL] +disable= + abstract-class-little-used, + abstract-class-not-used, + attribute-defined-outside-init, + cyclic-import, + fixme, + global-statement, + interface-not-implemented, + invalid-name, + locally-disabled, + missing-docstring, + no-self-use, + protected-access, + redefined-variable-type, + star-args, + too-few-public-methods, + too-many-arguments, + too-many-branches, + too-many-instance-attributes, + too-many-lines, + too-many-locals, + too-many-public-methods, + too-many-statements, + unidiomatic-typecheck, + unsubscriptable-object, + unsupported-membership-test, + unused-argument + +[REPORTS] +reports=no + +[SIMILARITIES] +min-similarity-lines=999 -- cgit v1.2.1