2012-01-19 19:11:44 +09:00
|
|
|
[Messages Control]
|
2012-06-27 17:21:46 +09:00
|
|
|
# PyLint Messages http://pylint-messages.wikidot.com/all-messages
|
2012-01-19 19:11:44 +09:00
|
|
|
# C0111: Don't require docstrings on every method
|
|
|
|
# W0511: TODOs in code comments are fine.
|
|
|
|
# W0142: *args and **kwargs are fine.
|
2012-06-27 17:21:46 +09:00
|
|
|
# E0602: Undefined variable %r
|
|
|
|
# C0103: Invalid name "%s" (should match %s)
|
|
|
|
# E1101: %s %r has no %r member
|
|
|
|
# R0903: Too few public methods (%s/%s)
|
|
|
|
# W0614: Unused import %s from wildcard import
|
|
|
|
# R0801: Similar lines in %s files
|
|
|
|
disable=C0111,W0511,W0142,E0602,C0103,E1101,R0903,W0614,R0801
|
2012-05-07 16:53:25 +09:00
|
|
|
output-format=parseable
|
|
|
|
reports=yes
|
|
|
|
files-output=no
|