summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc8
1 files changed, 4 insertions, 4 deletions
diff --git a/.pylintrc b/.pylintrc
index 713494c103..25d43edc1d 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -24,7 +24,6 @@ disable=
maybe-no-member,
no-member,
no-method-argument,
- no-name-in-module,
no-self-argument,
not-callable,
no-value-for-parameter,
@@ -47,7 +46,6 @@ disable=
global-statement,
global-variable-not-assigned,
logging-not-lazy,
- lost-exception,
no-init,
non-parent-init-called,
pointless-string-statement,
@@ -55,7 +53,6 @@ disable=
redefined-builtin,
redefined-outer-name,
redefine-in-handler,
- reimported,
signature-differs,
star-args,
super-init-not-called,
@@ -67,7 +64,6 @@ disable=
unused-argument,
unused-import,
unused-variable,
- useless-else-on-loop,
# "C" Coding convention violations
bad-continuation,
invalid-name,
@@ -129,6 +125,10 @@ deprecated-modules=
# should use openstack.common.jsonutils
json
+[TYPECHECK]
+# List of module names for which member attributes should not be checked
+ignored-modules=six.moves,_MovedItems
+
[REPORTS]
# Tells whether to display a full report or only the messages
reports=no