summaryrefslogtreecommitdiff
path: root/pylint.conf
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-07-20 11:30:42 +0300
committerLars Wirzenius <liw@liw.fi>2017-07-20 11:30:42 +0300
commitfb5375e384515ac6a3be6b8fa56f1a454f969d16 (patch)
tree3782488972cda462e1066d8cc31d70eaeaa8a5fe /pylint.conf
parent684f9698e8e3203a41c587f24e501d1c0a338c72 (diff)
downloadqvisqve-fb5375e384515ac6a3be6b8fa56f1a454f969d16.tar.gz
Add: pylint.conf, fix pylint complaints
Pylint is fairly eager to whinge. This pylint.conf silences the warnings I disagree with.
Diffstat (limited to 'pylint.conf')
-rw-r--r--pylint.conf18
1 files changed, 18 insertions, 0 deletions
diff --git a/pylint.conf b/pylint.conf
new file mode 100644
index 0000000..369aad6
--- /dev/null
+++ b/pylint.conf
@@ -0,0 +1,18 @@
+[MASTER]
+persistent=no
+
+[MESSAGES CONTROL]
+disable=
+ invalid-name,
+ missing-docstring,
+ no-self-use,
+ redefined-variable-type,
+ too-few-public-methods,
+ unidiomatic-typecheck,
+ unused-argument,
+
+[REPORTS]
+reports=no
+
+[SIMILARITIES]
+min-similarity-lines=999