Check PEP8 using Pylint

This commit is contained in:
Pedro Algarvio 2013-10-06 12:21:49 +01:00
parent 6db389b15d
commit bcd908ca2b

View file

@ -14,8 +14,7 @@ init-hook="
# Pickle collected data for later comparisons.
persistent=no
load-plugins=salttesting.pylintplugins.pep263
load-plugins=salttesting.pylintplugins.pep8,salttesting.pylintplugins.pep263
[MESSAGES CONTROL]
@ -60,7 +59,16 @@ disable=R,
W0631,
W0704,
F0220,
F0401
F0401,
E8501,
E8121,
E8122,
E8123,
E8124,
E8125,
E8126,
E8127,
E8128
# Disabled:
# R* [refactoring suggestions & reports]
@ -91,7 +99,9 @@ disable=R,
# W0704 (pointless-except) [misnomer; "ignores the exception" rather than "pointless"]
# F0220 (unresolved-interface)
# F0401 (import-error)
#
# E812* All PEP8 E12*
# E8501 PEP8 line too long
[REPORTS]