summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2019-05-12 16:29:13 -0400
committerNed Batchelder <ned@nedbatchelder.com>2019-05-13 08:34:15 -0400
commitd61d50fbabf810f8415bb9c3fe9d543ace019b66 (patch)
treedb21b4eee32de7e3156cbd20252298a332b237a1 /pylintrc
parent672ae3ff45cac34731170dc5b5996b96b9ef6288 (diff)
downloadpython-coveragepy-git-d61d50fbabf810f8415bb9c3fe9d543ace019b66.tar.gz
Use pylint 2.x
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc3
1 files changed, 3 insertions, 0 deletions
diff --git a/pylintrc b/pylintrc
index c9e04b9e..e9cd2410 100644
--- a/pylintrc
+++ b/pylintrc
@@ -72,8 +72,11 @@ disable=
using-constant-test,
too-many-nested-blocks,
too-many-ancestors,
+ unnecessary-pass,
# Formatting stuff
superfluous-parens,bad-continuation,
+# Disable while we still support Python 2:
+ useless-object-inheritance,
# Messages that are noisy for now, eventually maybe we'll turn them on:
invalid-name,
protected-access,