From 0c0be69e420f3acef5b425ca5d5f5ce7b9c42402 Mon Sep 17 00:00:00 2001 From: Sergei Trofimov Date: Fri, 24 Apr 2015 17:45:27 +0100 Subject: [PATCH] pylint: temporarily diable checkers broken in latest version A couple of checkers appear to be broken in latest version (report false positives). Disabling them until fixed. --- extras/pylintrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/extras/pylintrc b/extras/pylintrc index 99e2b8f1..d0b37d4f 100644 --- a/extras/pylintrc +++ b/extras/pylintrc @@ -41,7 +41,9 @@ ignore=external # https://bitbucket.org/logilab/pylint/issue/272/anomalous-backslash-in-string-for-raw # C0330: bad continuation, due to: # https://bitbucket.org/logilab/pylint/issue/232/wrong-hanging-indentation-false-positive -disable=C0301,C0103,C0111,W0142,R0903,R0904,R0922,W0511,W0141,I0011,R0921,W1401,C0330 +# TODO: disabling no-value-for-parameter and logging-format-interpolation, as they appear to be broken +# in version 1.4.1 and return a lot of false postives; should be re-enabled once fixed. +disable=C0301,C0103,C0111,W0142,R0903,R0904,R0922,W0511,W0141,I0011,R0921,W1401,C0330,no-value-for-parameter,logging-format-interpolation [FORMAT] max-module-lines=4000