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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 # R0922: Abstract class is only referenced 1 times | 54 # R0922: Abstract class is only referenced 1 times |
55 # W0122: Use of the exec statement | 55 # W0122: Use of the exec statement |
56 # W0141: Used builtin function '' | 56 # W0141: Used builtin function '' |
57 # W0142: Used * or ** magic | 57 # W0142: Used * or ** magic |
58 # W0402: Uses of a deprecated module 'string' | 58 # W0402: Uses of a deprecated module 'string' |
59 # W0404: 41: Reimport 'XX' (imported line NN) | 59 # W0404: 41: Reimport 'XX' (imported line NN) |
60 # W0511: TODO | 60 # W0511: TODO |
61 # W0603: Using the global statement | 61 # W0603: Using the global statement |
62 # W0613: Unused argument '' | 62 # W0613: Unused argument '' |
63 # W0703: Catch "Exception" | 63 # W0703: Catch "Exception" |
64 # W6501: Specify string format arguments as logging function parameters | 64 # W1201: Specify string format arguments as logging function parameters |
65 disable=C0103,C0111,C0302,I0011,R0401,R0801,R0901,R0902,R0903,R0904,R0911,R0912,
R0913,R0914,R0915,R0921,R0922,W0122,W0141,W0142,W0402,W0404,W0511,W0603,W0613,W0
703,W6501 | 65 disable=C0103,C0111,C0302,I0011,R0401,R0801,R0901,R0902,R0903,R0904,R0911,R0912,
R0913,R0914,R0915,R0921,R0922,W0122,W0141,W0142,W0402,W0404,W0511,W0603,W0613,W0
703,W1201 |
66 | 66 |
67 | 67 |
68 [REPORTS] | 68 [REPORTS] |
69 | 69 |
70 # Set the output format. Available formats are text, parseable, colorized, msvs | 70 # Set the output format. Available formats are text, parseable, colorized, msvs |
71 # (visual studio) and html | 71 # (visual studio) and html |
72 output-format=text | 72 output-format=text |
73 | 73 |
74 # Include message's id in output | 74 # Include message's id in output |
75 include-ids=yes | 75 include-ids=yes |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 # given file (report R0402 must not be disabled) | 259 # given file (report R0402 must not be disabled) |
260 import-graph= | 260 import-graph= |
261 | 261 |
262 # Create a graph of external dependencies in the given file (report R0402 must | 262 # Create a graph of external dependencies in the given file (report R0402 must |
263 # not be disabled) | 263 # not be disabled) |
264 ext-import-graph= | 264 ext-import-graph= |
265 | 265 |
266 # Create a graph of internal dependencies in the given file (report R0402 must | 266 # Create a graph of internal dependencies in the given file (report R0402 must |
267 # not be disabled) | 267 # not be disabled) |
268 int-import-graph= | 268 int-import-graph= |
OLD | NEW |