summaryrefslogtreecommitdiff
path: root/pylint.conf
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-04-18 17:06:52 +0300
committerLars Wirzenius <liw@liw.fi>2015-04-18 17:13:28 +0300
commit5dce4e1d7000ab08e30ef71f874db0e40e8889b1 (patch)
tree5496bd992379c9b892a020d5f4104b66b933f236 /pylint.conf
parent13aad69bcb3027e5d1b28ef8c1b316767e8b0b10 (diff)
downloaddistix-5dce4e1d7000ab08e30ef71f874db0e40e8889b1.tar.gz
Run pylint as well as pep8 on the source; fix things
Diffstat (limited to 'pylint.conf')
-rw-r--r--pylint.conf29
1 files changed, 29 insertions, 0 deletions
diff --git a/pylint.conf b/pylint.conf
new file mode 100644
index 0000000..dc45d80
--- /dev/null
+++ b/pylint.conf
@@ -0,0 +1,29 @@
+[MASTER]
+persistent=no
+
+[MESSAGES CONTROL]
+disable=
+ attribute-defined-outside-init,
+ bad-builtin,
+ blacklisted-name,
+ cyclic-import,
+ fixme,
+ 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