summaryrefslogtreecommitdiff
path: root/pylint.conf
diff options
context:
space:
mode:
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