cppcheck/pylintrc_travis

17 lines
473 B
Plaintext
Raw Normal View History

[MESSAGES CONTROL]
disable=C,R,W
enable=mixed-indentation,
trailing-whitespace,
print-statement,
literal-comparison,
#unnecessary-semicolon,
#bad-indentation
[REPORTS]
reports=no
[TYPECHECK]
# See https://stackoverflow.com/questions/10300082/how-to-prevent-python-pylint-complaining-about-socket-class-sendall-method
ignored-classes=SQLObject,_socketobject
[MASTER]
init-hook='import sys; sys.path.append("./addons")'
suggestion-mode=yes