summaryrefslogtreecommitdiff
path: root/pylint.conf
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-04-18 17:21:41 +0300
committerLars Wirzenius <liw@liw.fi>2015-04-18 17:21:41 +0300
commit54fd1c2268c82014baf54ee5c97201a43e728723 (patch)
tree58b75541c6d6adc25559a356523ae5f1b74ae921 /pylint.conf
parent27be49a8d1d7d236a0fa5878552f34adc238352f (diff)
downloadjt-54fd1c2268c82014baf54ee5c97201a43e728723.tar.gz
Run pylint in ./check; fix problems found
Diffstat (limited to 'pylint.conf')
-rw-r--r--pylint.conf28
1 files changed, 28 insertions, 0 deletions
diff --git a/pylint.conf b/pylint.conf
new file mode 100644
index 0000000..b36b2aa
--- /dev/null
+++ b/pylint.conf
@@ -0,0 +1,28 @@
+[MASTER]
+persistent=no
+
+[MESSAGES CONTROL]
+disable=
+ attribute-defined-outside-init,
+ bad-builtin,
+ blacklisted-name,
+ cyclic-import,
+ invalid-name,
+ missing-docstring,
+ no-self-use,
+ 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