summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2017-05-30 12:01:35 -0700
committerBob Halley <halley@dnspython.org>2017-05-30 12:01:35 -0700
commitebc3b75248d86cc5dca79833aabd5062d2292417 (patch)
treec3473586b95d376f215d7d6e40e7dd5ae16ef8c7 /pylintrc
parent22e9de1d7957e558ea8f89f24e402cbbc8d50646 (diff)
downloaddnspython-ebc3b75248d86cc5dca79833aabd5062d2292417.tar.gz
update pylint settings for latest pylint
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc5
1 files changed, 4 insertions, 1 deletions
diff --git a/pylintrc b/pylintrc
index 474f915..8a8ec2a 100644
--- a/pylintrc
+++ b/pylintrc
@@ -11,6 +11,9 @@ enable=
all,
python3
+# It's worth looking at len-as-condition for optimization, but it's disabled
+# here as it is not a correctness thing.
+
disable=
R,
I,
@@ -34,7 +37,7 @@ disable=
unused-variable,
wrong-import-order,
wrong-import-position,
-
+ len-as-condition,
[REPORTS]