- Notifications
You must be signed in to change notification settings - Fork 892
/
Copy pathpylintrc
12 lines (9 loc) · 562 Bytes
/
pylintrc
1
2
3
4
5
6
7
8
9
10
11
12
# Source: opencv/platforms/scripts/pylintrc
[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.
unnecessary-semicolon, # Used when a statement is ended by a semi-colon (”;”), which isn’t necessary.
unused-variable # Used when a variable is defined but not used. (Use _var to ignore var).