Change libjpeg-devel to libjpeg-turbo-devel in opencv.spec
[platform/upstream/opencv.git] / platforms / scripts / pylintrc
1 [MESSAGES CONTROL]
2
3 # Disable all to choose the Tests one by one
4 disable=all
5
6 # Tests
7 enable=bad-indentation,       # Used when an unexpected number of indentation’s tabulations or spaces has been found.
8        mixed-indentation,     # Used when there are some mixed tabs and spaces in a module.
9        unnecessary-semicolon, # Used when a statement is ended by a semi-colon (”;”), which isn’t necessary.
10        unused-variable        # Used when a variable is defined but not used. (Use _var to ignore var).
11
12
13 [REPORTS]
14
15 # Activate the evaluation score.
16 score=no