summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc7
1 files changed, 4 insertions, 3 deletions
diff --git a/pylintrc b/pylintrc
index cda021da..edc173ae 100644
--- a/pylintrc
+++ b/pylintrc
@@ -81,9 +81,10 @@ confidence=
disable=fixme, invalid-name, missing-docstring, too-few-public-methods,
too-many-public-methods,
- # We know about it and we're doing our best to remove it
- # in 2.0
+ # 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
@@ -248,7 +249,7 @@ ignore-comments=yes
ignore-docstrings=yes
# Ignore imports when computing similarities.
-ignore-imports=no
+ignore-imports=yes
[SPELLING]