From ddda062d58fd9c3c6b4edbea0afb236fc26024ba Mon Sep 17 00:00:00 2001 From: Martin Basti Date: Wed, 17 Feb 2016 12:57:30 +0100 Subject: 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 --- pylintrc | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'pylintrc') 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] -- cgit