summaryrefslogtreecommitdiff
path: root/pylint.conf
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2016-12-31 22:28:09 +0200
committerLars Wirzenius <liw@liw.fi>2016-12-31 22:28:09 +0200
commit7bebba0c7643b85ea2ab2f089c79bfe90ed2880d (patch)
tree56945ca92c0c7862e824f1a1a42d8e94102c35eb /pylint.conf
parente34f8ddca3308c6b50a7d4162e05151f8887afa9 (diff)
downloadpy_pgpwordlist-7bebba0c7643b85ea2ab2f089c79bfe90ed2880d.tar.gz
Add more automated checking, to setup.py
Diffstat (limited to 'pylint.conf')
-rw-r--r--pylint.conf37
1 files changed, 37 insertions, 0 deletions
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