PyLint ignore C0330 (bad-continuation)

This commit is contained in:
Pedro Algarvio 2014-05-29 11:39:00 +01:00
parent 14d54df7ac
commit 9fb4a2e7c3
2 changed files with 4 additions and 0 deletions

View file

@ -42,6 +42,7 @@ load-plugins=salttesting.pylintplugins.pep8,salttesting.pylintplugins.pep263,sal
# multiple time (only on the command line, not in the configuration file where
# it should appear only once).
disable=W0142,
C0330
# E8121,
# E8122,
# E8123,
@ -56,6 +57,7 @@ disable=W0142,
# W0142 (star-args)
# E812* All PEP8 E12*
# E8501 PEP8 line too long
# C0330 (bad-continuation)
[REPORTS]

View file

@ -44,6 +44,7 @@ disable=R,
C0204,
C0301,
C0302,
C0330,
W0110,
W0122,
W0142,
@ -83,6 +84,7 @@ disable=R,
# C0204 (bad-mcs-classmethod-argument)
# C0301 (line-too-long)
# C0302 (too-many-lines)
# C0330 (bad-continuation)
# W0110 (deprecated-lambda)
# W0122 (exec-statement)
# W0142 (star-args)