From 61830c315a9b051a8ab46da487792d0c1e90ec5d Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 18 Apr 2015 19:09:49 +0300 Subject: Run pylint in check; fix problems found --- pylint.conf | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 pylint.conf (limited to 'pylint.conf') diff --git a/pylint.conf b/pylint.conf new file mode 100644 index 0000000..bae19df --- /dev/null +++ b/pylint.conf @@ -0,0 +1,30 @@ +[MASTER] +persistent=no + +[MESSAGES CONTROL] +disable= + attribute-defined-outside-init, + bad-builtin, + blacklisted-name, + cyclic-import, + invalid-name, + missing-docstring, + no-member, + no-self-use, + pointless-statement, + protected-access, + star-args, + too-few-public-methods, + too-many-arguments, + too-many-branches, + too-many-instance-attributes, + too-many-locals, + too-many-public-methods, + too-many-statements, + unused-argument + +[REPORTS] +reports=no + +[SIMILARITIES] +min-similarity-lines=999 -- cgit v1.2.1