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]
|
[MESSAGES CONTROL]
|
||||||
disable=C,R,W
|
disable=C,R,W
|
||||||
|
enable=mixed-indentation,
|
||||||
|
trailing-whitespace,
|
||||||
|
print-statement,
|
||||||
|
literal-comparison,
|
||||||
|
#unnecessary-semicolon,
|
||||||
|
#bad-indentation
|
||||||
[REPORTS]
|
[REPORTS]
|
||||||
reports=no
|
reports=no
|
||||||
[TYPECHECK]
|
[TYPECHECK]
|
||||||
|
@ -8,3 +13,4 @@ reports=no
|
||||||
ignored-classes=SQLObject,_socketobject
|
ignored-classes=SQLObject,_socketobject
|
||||||
[MASTER]
|
[MASTER]
|
||||||
init-hook='import sys; sys.path.append("./addons")'
|
init-hook='import sys; sys.path.append("./addons")'
|
||||||
|
suggestion-mode=yes
|
||||||
|
|
Loading…
Reference in New Issue