OLD | NEW |
1 [MASTER] | 1 [MASTER] |
2 | 2 |
3 # Specify a configuration file. | 3 # Specify a configuration file. |
4 #rcfile= | 4 #rcfile= |
5 | 5 |
6 # Python code to execute, usually for sys.path manipulation such as | 6 # Python code to execute, usually for sys.path manipulation such as |
7 # pygtk.require(). | 7 # pygtk.require(). |
8 #init-hook= | 8 #init-hook= |
9 | 9 |
10 # Profiled execution. | 10 # Profiled execution. |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 # R0912: Too many branches (N/12) | 50 # R0912: Too many branches (N/12) |
51 # R0913: Too many arguments (N/5) | 51 # R0913: Too many arguments (N/5) |
52 # R0914: Too many local variables (N/15) | 52 # R0914: Too many local variables (N/15) |
53 # R0915: Too many statements (N/50) | 53 # R0915: Too many statements (N/50) |
54 # R0921: Abstract class not referenced | 54 # R0921: Abstract class not referenced |
55 # R0922: Abstract class is only referenced 1 times | 55 # R0922: Abstract class is only referenced 1 times |
56 # W0122: Use of the exec statement | 56 # W0122: Use of the exec statement |
57 # W0141: Used builtin function '' | 57 # W0141: Used builtin function '' |
58 # W0142: Used * or ** magic | 58 # W0142: Used * or ** magic |
59 # W0402: Uses of a deprecated module 'string' | 59 # W0402: Uses of a deprecated module 'string' |
| 60 # W0403: Relative import 'X', should be 'Y.X' |
60 # W0404: 41: Reimport 'XX' (imported line NN) | 61 # W0404: 41: Reimport 'XX' (imported line NN) |
61 # W0511: TODO | 62 # W0511: TODO |
62 # W0603: Using the global statement | 63 # W0603: Using the global statement |
63 # W0613: Unused argument '' | 64 # W0613: Unused argument '' |
64 # W0703: Catch "Exception" | 65 # W0703: Catch "Exception" |
65 # W1201: Specify string format arguments as logging function parameters | 66 # W1201: Specify string format arguments as logging function parameters |
66 disable=C0103,C0111,C0302,I0010,I0011,R0401,R0801,R0901,R0902,R0903,R0904,R0911,
R0912,R0913,R0914,R0915,R0921,R0922,W0122,W0141,W0142,W0402,W0404,W0511,W0603,W0
613,W0703,W1201 | 67 disable=C0103,C0111,C0302,I0010,I0011,R0401,R0801,R0901,R0902,R0903,R0904,R0911,
R0912,R0913,R0914,R0915,R0921,R0922,W0122,W0141,W0142,W0402,W0403,W0404,W0511,W0
603,W0613,W0703,W1201 |
67 | 68 |
68 | 69 |
69 [REPORTS] | 70 [REPORTS] |
70 | 71 |
71 # Set the output format. Available formats are text, parseable, colorized, msvs | 72 # Set the output format. Available formats are text, parseable, colorized, msvs |
72 # (visual studio) and html | 73 # (visual studio) and html |
73 output-format=text | 74 output-format=text |
74 | 75 |
75 # Include message's id in output | 76 # Include message's id in output |
76 include-ids=yes | 77 include-ids=yes |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 # given file (report R0402 must not be disabled) | 261 # given file (report R0402 must not be disabled) |
261 import-graph= | 262 import-graph= |
262 | 263 |
263 # Create a graph of external dependencies in the given file (report R0402 must | 264 # Create a graph of external dependencies in the given file (report R0402 must |
264 # not be disabled) | 265 # not be disabled) |
265 ext-import-graph= | 266 ext-import-graph= |
266 | 267 |
267 # Create a graph of internal dependencies in the given file (report R0402 must | 268 # Create a graph of internal dependencies in the given file (report R0402 must |
268 # not be disabled) | 269 # not be disabled) |
269 int-import-graph= | 270 int-import-graph= |
OLD | NEW |