1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-18 20:11:20 +00:00

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.
This commit is contained in:
Sergei Trofimov 2015-04-24 17:45:27 +01:00
parent 97a397d5c8
commit 0c0be69e42

View File

@ -41,7 +41,9 @@ ignore=external
# https://bitbucket.org/logilab/pylint/issue/272/anomalous-backslash-in-string-for-raw # https://bitbucket.org/logilab/pylint/issue/272/anomalous-backslash-in-string-for-raw
# C0330: bad continuation, due to: # C0330: bad continuation, due to:
# https://bitbucket.org/logilab/pylint/issue/232/wrong-hanging-indentation-false-positive # 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] [FORMAT]
max-module-lines=4000 max-module-lines=4000