summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-18 23:05:36 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-19 23:09:13 +0200
commit8c88b6e8babe9bed9140bc396b4721ffe668153c (patch)
tree8daa6a1469f33dd789c254cdab630ae3b289d098 /pylintrc
parent785b61e479a5aa2624cd7588b07c059131be9bf4 (diff)
downloadastroid-git-8c88b6e8babe9bed9140bc396b4721ffe668153c.tar.gz
Enable checks for and fix useless suppression
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc6
1 files changed, 2 insertions, 4 deletions
diff --git a/pylintrc b/pylintrc
index ff06b91e..1216883f 100644
--- a/pylintrc
+++ b/pylintrc
@@ -86,11 +86,10 @@ disable=fixme,
too-many-public-methods,
too-many-boolean-expressions,
too-many-branches,
+ too-many-lines, # https://github.com/PyCQA/astroid/issues/465
too-many-statements,
# We know about it and we're doing our best to remove it in 2.0 (oups)
cyclic-import,
- wrong-import-position,
- wrong-import-order,
# The check is faulty in most cases and it doesn't take in
# account how the variable is being used. For instance,
# using a variable that is a list or a generator in an
@@ -114,8 +113,7 @@ disable=fixme,
# everything here is legacy not checked in astroid/brain
duplicate-code,
-enable=
- useless-suppression
+enable=useless-suppression
[BASIC]