| 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 17 matching lines...) Expand all Loading... |
| 28 # either give multiple identifier separated by comma (,) or put this option | 28 # either give multiple identifier separated by comma (,) or put this option |
| 29 # multiple time. | 29 # multiple time. |
| 30 #enable= | 30 #enable= |
| 31 | 31 |
| 32 # Disable the message, report, category or checker with the given id(s). You | 32 # Disable the message, report, category or checker with the given id(s). You |
| 33 # can either give multiple identifier separated by comma (,) or put this option | 33 # can either give multiple identifier separated by comma (,) or put this option |
| 34 # multiple time. | 34 # multiple time. |
| 35 # C0103: Invalid name "" | 35 # C0103: Invalid name "" |
| 36 # C0111: Missing docstring | 36 # C0111: Missing docstring |
| 37 # C0302: Too many lines in module (N) | 37 # C0302: Too many lines in module (N) |
| 38 # R0901: Too many ancestors (8/7) |
| 38 # R0902: Too many instance attributes (N/7) | 39 # R0902: Too many instance attributes (N/7) |
| 39 # R0903: Too few public methods (N/2) | 40 # R0903: Too few public methods (N/2) |
| 40 # R0911: Too many return statements (N/6) | 41 # R0911: Too many return statements (N/6) |
| 41 # R0912: Too many branches (N/12) | 42 # R0912: Too many branches (N/12) |
| 42 # R0913: Too many arguments (N/5) | 43 # R0913: Too many arguments (N/5) |
| 43 # R0914: Too many local variables (N/15) | 44 # R0914: Too many local variables (N/15) |
| 44 # R0915: Too many statements (N/50) | 45 # R0915: Too many statements (N/50) |
| 45 # W0122: Use of the exec statement | 46 # W0122: Use of the exec statement |
| 46 # W0141: Used builtin function '' | 47 # W0141: Used builtin function '' |
| 47 # W0603: Using the global statement | 48 # W0603: Using the global statement |
| 48 # W0613: Unused argument '' | 49 # W0613: Unused argument '' |
| 49 # W6501: Specify string format arguments as logging function parameters | 50 # W6501: Specify string format arguments as logging function parameters |
| 50 disable=C0103,C0111,C0302,R0902,R0903,R0911,R0912,R0913,R0914,R0915,W0122,W0141,
W0603,W0613,W6501 | 51 disable=C0103,C0111,C0302,R0901,R0902,R0903,R0911,R0912,R0913,R0914,R0915,W0122,
W0141,W0603,W0613,W6501 |
| 51 | 52 |
| 52 | 53 |
| 53 [REPORTS] | 54 [REPORTS] |
| 54 | 55 |
| 55 # Set the output format. Available formats are text, parseable, colorized, msvs | 56 # Set the output format. Available formats are text, parseable, colorized, msvs |
| 56 # (visual studio) and html | 57 # (visual studio) and html |
| 57 output-format=text | 58 output-format=text |
| 58 | 59 |
| 59 # Include message's id in output | 60 # Include message's id in output |
| 60 include-ids=yes | 61 include-ids=yes |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 # given file (report R0402 must not be disabled) | 245 # given file (report R0402 must not be disabled) |
| 245 import-graph= | 246 import-graph= |
| 246 | 247 |
| 247 # Create a graph of external dependencies in the given file (report R0402 must | 248 # Create a graph of external dependencies in the given file (report R0402 must |
| 248 # not be disabled) | 249 # not be disabled) |
| 249 ext-import-graph= | 250 ext-import-graph= |
| 250 | 251 |
| 251 # Create a graph of internal dependencies in the given file (report R0402 must | 252 # Create a graph of internal dependencies in the given file (report R0402 must |
| 252 # not be disabled) | 253 # not be disabled) |
| 253 int-import-graph= | 254 int-import-graph= |
| OLD | NEW |