mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
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:
parent
2c3b0b1bcd
commit
ddda062d58
15
pylintrc
15
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]
|
||||
|
Loading…
Reference in New Issue
Block a user