summaryrefslogtreecommitdiff
path: root/pylint.conf
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2016-07-24 21:33:05 +0300
committerLars Wirzenius <liw@liw.fi>2016-07-24 21:33:05 +0300
commit2ab9dfd554d2b49bc7df4711c5fb633dd3a92ccf (patch)
tree46a5a0e28a2949eb4348114c5169ec58633700c1 /pylint.conf
parent3ade692af1daf4b60af748f7ed35933ec36d5575 (diff)
downloadcliapp-2ab9dfd554d2b49bc7df4711c5fb633dd3a92ccf.tar.gz
Silence pylint warnings
Disable the ones that I find pointless.
Diffstat (limited to 'pylint.conf')
-rw-r--r--pylint.conf2
1 files changed, 2 insertions, 0 deletions
diff --git a/pylint.conf b/pylint.conf
index b36b2aa..4da28ea 100644
--- a/pylint.conf
+++ b/pylint.conf
@@ -11,6 +11,7 @@ disable=
missing-docstring,
no-self-use,
protected-access,
+ redefined-variable-type,
star-args,
too-few-public-methods,
too-many-arguments,
@@ -19,6 +20,7 @@ disable=
too-many-locals,
too-many-public-methods,
too-many-statements,
+ unidiomatic-typecheck,
unused-argument
[REPORTS]