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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 # W0703: Catch "Exception" | 62 # W0703: Catch "Exception" |
63 # W1201: Specify string format arguments as logging function parameters | 63 # W1201: Specify string format arguments as logging function parameters |
64 # | 64 # |
65 # These should get enabled, but the codebase has too many violations currently. | 65 # These should get enabled, but the codebase has too many violations currently. |
66 # bad-continuation | 66 # bad-continuation |
67 disable=C0103,C0111,C0302,I0010,I0011,R0801,R0901,R0902,R0903,R0904,R0911,R0912,
R0913,R0914,R0915,R0921,R0922,W0122,W0141,W0142,W0402,W0404,W0511,W0603,W0703,W1
201,bad-continuation | 67 # anomalous-backslash-in-string |
| 68 # bad-context-manager |
| 69 # bad-indentation |
| 70 # bad-str-strip-call |
| 71 # bad-whitespace |
| 72 # cell-var-from-loop |
| 73 # deprecated-lambda |
| 74 # eval-used |
| 75 # function-redefined |
| 76 # import-error |
| 77 # locally-enabled |
| 78 # missing-final-newline |
| 79 # no-init |
| 80 # no-name-in-module |
| 81 # no-self-use |
| 82 # not-callable |
| 83 # old-style-class |
| 84 # protected-access |
| 85 # superfluous-parens |
| 86 # super-on-old-class |
| 87 # too-many-function-args |
| 88 # trailing-whitespace |
| 89 # unnecessary-semicolon |
| 90 # unpacking-non-sequence |
| 91 # unused-import |
| 92 # useless-else-on-loop |
| 93 disable=C0103,C0111,C0302,I0010,I0011,R0801,R0901,R0902,R0903,R0904,R0911,R0912,
R0913,R0914,R0915,R0921,R0922,W0122,W0141,W0142,W0402,W0404,W0511,W0603,W0703,W1
201,bad-continuation,anomalous-backslash-in-string,bad-context-manager,bad-inden
tation,bad-str-strip-call,bad-whitespace,cell-var-from-loop,deprecated-lambda,ev
al-used,function-redefined,import-error,locally-enabled,missing-final-newline,no
-init,no-name-in-module,no-self-use,not-callable,old-style-class,protected-acces
s,superfluous-parens,super-on-old-class,too-many-function-args,trailing-whitespa
ce,unnecessary-semicolon,unpacking-non-sequence,unused-import,useless-else-on-lo
op |
68 | 94 |
69 | 95 |
70 [REPORTS] | 96 [REPORTS] |
71 | 97 |
72 # Set the output format. Available formats are text, parseable, colorized, msvs | 98 # Set the output format. Available formats are text, parseable, colorized, msvs |
73 # (visual studio) and html | 99 # (visual studio) and html |
74 output-format=text | 100 output-format=text |
75 | 101 |
76 # Put messages in a separate file for each module / package specified on the | 102 # Put messages in a separate file for each module / package specified on the |
77 # command line instead of printing them on stdout. Reports (if any) will be | 103 # command line instead of printing them on stdout. Reports (if any) will be |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 # Create a graph of internal dependencies in the given file (report RP0402 must | 296 # Create a graph of internal dependencies in the given file (report RP0402 must |
271 # not be disabled) | 297 # not be disabled) |
272 int-import-graph= | 298 int-import-graph= |
273 | 299 |
274 | 300 |
275 [EXCEPTIONS] | 301 [EXCEPTIONS] |
276 | 302 |
277 # Exceptions that will emit a warning when being caught. Defaults to | 303 # Exceptions that will emit a warning when being caught. Defaults to |
278 # "Exception" | 304 # "Exception" |
279 overgeneral-exceptions=Exception | 305 overgeneral-exceptions=Exception |
OLD | NEW |