summaryrefslogtreecommitdiff
path: root/pylint.conf
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-11-02 23:19:41 +0200
committerLars Wirzenius <liw@liw.fi>2015-11-02 23:19:41 +0200
commit62903656036de5d280b0e35e30a3336a278e3f5f (patch)
treee0803bd2034579c3d32ef99affab771b775ddd3a /pylint.conf
parent7a7df43d3c56ab5205f4345b2e54a8ae2586fe2b (diff)
downloadobnam-62903656036de5d280b0e35e30a3336a278e3f5f.tar.gz
Disable pylint warning that's falselly triggered
As usual, I don't want to disable it in the code, where it's a distraction. I'd rather disable it globally for the project and go without a possible benefit. For this warning, it's a really, really unimportant warning.
Diffstat (limited to 'pylint.conf')
-rw-r--r--pylint.conf1
1 files changed, 1 insertions, 0 deletions
diff --git a/pylint.conf b/pylint.conf
index 9ae639b7..3d08f8d4 100644
--- a/pylint.conf
+++ b/pylint.conf
@@ -23,6 +23,7 @@ disable=
too-many-locals,
too-many-public-methods,
too-many-statements,
+ unidiomatic-typecheck,
unused-argument
[REPORTS]