From 7eb02a49ed86c0640266af47d11c9efa91bc54cb Mon Sep 17 00:00:00 2001 From: Martin Basti Date: May 29 2017 16:37:41 +0000 Subject: 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 --- diff --git a/pylintrc b/pylintrc index f92adee..8cb8631 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]