From 7eb02a49ed86c0640266af47d11c9efa91bc54cb Mon Sep 17 00:00:00 2001 From: Martin Basti Date: Fri, 26 May 2017 21:41:40 +0200 Subject: [PATCH] pylint: ignore new checks added in 1.7 New checks will be temporarily disabled until fixed. https://pagure.io/freeipa/issue/6874 Reviewed-By: Stanislav Laznicka --- pylintrc | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pylintrc b/pylintrc index f92adeea8..8cb86319e 100644 --- a/pylintrc +++ b/pylintrc @@ -84,7 +84,16 @@ disable= singleton-comparison, misplaced-comparison-constant, not-a-mapping, - singleton-comparison + singleton-comparison, + len-as-condition, # new in pylint 1.7 + no-else-return, # new in pylint 1.7 + literal-comparison, # new in pylint 1.7 + single-string-used-for-slots, # new in pylint 1.7 + useless-super-delegation, # new in pylint 1.7 + redefined-argument-from-local, # new in pylint 1.7 + consider-merging-isinstance, # new in pylint 1.7 + unsupported-assignment-operation # new in pylint 1.7 + consider-iterating-dictionary, # wontfix for better python2/3 code [REPORTS]