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:
parent
6c9c723850
commit
0a38b1b511
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue