summaryrefslogtreecommitdiffstats
path: root/pylintrc
diff options
context:
space:
mode:
authorMartin Basti <mbasti@redhat.com>2016-02-17 12:57:30 +0100
committerMartin Basti <mbasti@redhat.com>2016-02-23 16:53:18 +0100
commitddda062d58fd9c3c6b4edbea0afb236fc26024ba (patch)
tree8b16387809f35e5800a530a174eaac01abaad313 /pylintrc
parent2c3b0b1bcd972e6beec4691c03830f37dd27e199 (diff)
downloadfreeipa-ddda062d58fd9c3c6b4edbea0afb236fc26024ba.tar.gz
freeipa-ddda062d58fd9c3c6b4edbea0afb236fc26024ba.tar.xz
freeipa-ddda062d58fd9c3c6b4edbea0afb236fc26024ba.zip
Disable new pylint checks
New checks have been introduced in pylint 1.5 and many of them are not compatible with IPA code or produce false positives. Disable them all. Note: due older versions of pylint, new checks cannot be disabled locally, must be disabled globally. https://fedorahosted.org/freeipa/ticket/5615 Reviewed-By: David Kupka <dkupka@redhat.com>
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc15
1 files changed, 14 insertions, 1 deletions
diff --git a/pylintrc b/pylintrc
index 29db1049c..c6f7f457d 100644
--- a/pylintrc
+++ b/pylintrc
@@ -67,7 +67,20 @@ disable=
superfluous-parens,
too-many-lines,
unidiomatic-typecheck,
- no-absolute-import
+ no-absolute-import,
+ wrong-import-order,
+ ungrouped-imports,
+ wrong-import-position,
+ unsubscriptable-object,
+ unsupported-membership-test,
+ not-an-iterable,
+ duplicate-except,
+ singleton-comparison,
+ misplaced-comparison-constant,
+ consider-using-enumerate,
+ unneeded-not,
+ not-a-mapping,
+ singleton-comparison
[REPORTS]