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>
This commit is contained in:
Martin Basti 2016-02-17 12:57:30 +01:00
parent 2c3b0b1bcd
commit ddda062d58

View File

@ -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]