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 26 matching lines...) Expand all Loading... |
37 # C0302: Too many lines in module (N) | 37 # C0302: Too many lines in module (N) |
38 # I0011: Locally disabling WNNNN | 38 # I0011: Locally disabling WNNNN |
39 # | 39 # |
40 # It's a problem but not something we can fix right now. | 40 # It's a problem but not something we can fix right now. |
41 # R0401: Cyclic import | 41 # R0401: Cyclic import |
42 # | 42 # |
43 # R0801: Similar lines in N files | 43 # R0801: Similar lines in N files |
44 # R0901: Too many ancestors (8/7) | 44 # R0901: Too many ancestors (8/7) |
45 # R0902: Too many instance attributes (N/7) | 45 # R0902: Too many instance attributes (N/7) |
46 # R0903: Too few public methods (N/2) | 46 # R0903: Too few public methods (N/2) |
| 47 # R0904: Too many public methods (N/20) |
47 # R0911: Too many return statements (N/6) | 48 # R0911: Too many return statements (N/6) |
48 # R0912: Too many branches (N/12) | 49 # R0912: Too many branches (N/12) |
49 # R0913: Too many arguments (N/5) | 50 # R0913: Too many arguments (N/5) |
50 # R0914: Too many local variables (N/15) | 51 # R0914: Too many local variables (N/15) |
51 # R0915: Too many statements (N/50) | 52 # R0915: Too many statements (N/50) |
52 # W0122: Use of the exec statement | 53 # W0122: Use of the exec statement |
53 # W0141: Used builtin function '' | 54 # W0141: Used builtin function '' |
54 # W0142: Used * or ** magic | 55 # W0142: Used * or ** magic |
55 # W0402: Uses of a deprecated module 'string' | 56 # W0402: Uses of a deprecated module 'string' |
56 # W0511: TODO | 57 # W0511: TODO |
57 # W0603: Using the global statement | 58 # W0603: Using the global statement |
58 # W0613: Unused argument '' | 59 # W0613: Unused argument '' |
59 # W0703: Catch "Exception" | 60 # W0703: Catch "Exception" |
60 # W6501: Specify string format arguments as logging function parameters | 61 # W6501: Specify string format arguments as logging function parameters |
61 disable=C0103,C0111,C0302,I0011,R0401,R0801,R0901,R0902,R0903,R0911,R0912,R0913,
R0914,R0915,W0122,W0141,W0142,W0402,W0511,W0603,W0613,W0703,W6501 | 62 disable=C0103,C0111,C0302,I0011,R0401,R0801,R0901,R0902,R0903,R0904,R0911,R0912,
R0913,R0914,R0915,W0122,W0141,W0142,W0402,W0511,W0603,W0613,W0703,W6501 |
62 | 63 |
63 | 64 |
64 [REPORTS] | 65 [REPORTS] |
65 | 66 |
66 # Set the output format. Available formats are text, parseable, colorized, msvs | 67 # Set the output format. Available formats are text, parseable, colorized, msvs |
67 # (visual studio) and html | 68 # (visual studio) and html |
68 output-format=text | 69 output-format=text |
69 | 70 |
70 # Include message's id in output | 71 # Include message's id in output |
71 include-ids=yes | 72 include-ids=yes |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 # given file (report R0402 must not be disabled) | 256 # given file (report R0402 must not be disabled) |
256 import-graph= | 257 import-graph= |
257 | 258 |
258 # Create a graph of external dependencies in the given file (report R0402 must | 259 # Create a graph of external dependencies in the given file (report R0402 must |
259 # not be disabled) | 260 # not be disabled) |
260 ext-import-graph= | 261 ext-import-graph= |
261 | 262 |
262 # Create a graph of internal dependencies in the given file (report R0402 must | 263 # Create a graph of internal dependencies in the given file (report R0402 must |
263 # not be disabled) | 264 # not be disabled) |
264 int-import-graph= | 265 int-import-graph= |
OLD | NEW |