pylintrc_travis: Enable more messages and fix issues (#2332)

The plan is to enable more and more useful messages and fix the issues
step by step to improve the code quality.
This commit is contained in:
Sebastian 2019-11-05 21:05:43 +01:00 committed by amai2012
parent 6c9c723850
commit 0a38b1b511
3 changed files with 12 additions and 6 deletions

View File

@ -1,6 +1,11 @@
# Just the severe stuff...
[MESSAGES CONTROL]
disable=C,R,W
enable=mixed-indentation,
trailing-whitespace,
print-statement,
literal-comparison,
#unnecessary-semicolon,
#bad-indentation
[REPORTS]
reports=no
[TYPECHECK]
@ -8,3 +13,4 @@ reports=no
ignored-classes=SQLObject,_socketobject
[MASTER]
init-hook='import sys; sys.path.append("./addons")'
suggestion-mode=yes