2017-06-29 19:42:45 +08:00
|
|
|
|
[MESSAGES CONTROL]
|
|
|
|
|
|
|
|
|
|
# Disable all to choose the Tests one by one
|
|
|
|
|
disable=all
|
|
|
|
|
|
|
|
|
|
# Tests
|
|
|
|
|
enable=bad-indentation, # Used when an unexpected number of indentation’s tabulations or spaces has been found.
|
|
|
|
|
mixed-indentation, # Used when there are some mixed tabs and spaces in a module.
|
2023-06-11 23:02:34 +08:00
|
|
|
|
unnecessary-semicolon, # Used when a statement is ended by a semi-colon (";"), which isn’t necessary.
|
2017-06-29 19:42:45 +08:00
|
|
|
|
unused-variable # Used when a variable is defined but not used. (Use _var to ignore var).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[REPORTS]
|
|
|
|
|
|
|
|
|
|
# Activate the evaluation score.
|
|
|
|
|
score=no
|