OLD | NEW |
---|---|
1 [MESSAGES CONTROL] | 1 [MESSAGES CONTROL] |
2 | 2 |
3 # Disable the message, report, category or checker with the given id(s). | 3 # Disable the message, report, category or checker with the given id(s). |
4 # TODO(perf-owners): Reduce this list to as small as possible. | 4 # TODO(perf-owners): Reduce this list to as small as possible. |
5 disable=I0010,I0011,abstract-class-little-used,abstract-class-not-used,anomalous -backslash-in-string,bad-builtin,bad-context-manager,bad-continuation,bad-indent ation,bad-str-strip-call,bad-whitespace,broad-except,cell-var-from-loop,deprecat ed-lambda,deprecated-module,duplicate-code,eval-used,exec-used,fixme,function-re defined,global-statement,interface-not-implemented,invalid-name,locally-enabled, logging-not-lazy,missing-docstring,missing-final-newline,no-init,no-member,no-na me-in-module,no-self-use,no-self-use,not-callable,old-style-class,reimported,sta r-args,super-on-old-class,superfluous-parens,too-few-public-methods,too-many-anc estors,too-many-arguments,too-many-branches,too-many-function-args,too-many-inst ance-attributes,too-many-lines,too-many-locals,too-many-public-methods,too-many- return-statements,too-many-statements,trailing-whitespace,unnecessary-semicolon, unpacking-non-sequence,useless-else-on-loop,unused-argument | 5 disable=I0010,I0011,abstract-class-little-used,abstract-class-not-used,anomalous -backslash-in-string,bad-builtin,bad-context-manager,bad-continuation,bad-indent ation,bad-str-strip-call,bad-whitespace,broad-except,cell-var-from-loop,deprecat ed-lambda,deprecated-module,duplicate-code,eval-used,exec-used,fixme,function-re defined,global-statement,interface-not-implemented,invalid-name,locally-enabled, logging-not-lazy,missing-docstring,missing-final-newline,no-init,no-member,no-na me-in-module,no-self-use,no-self-use,not-callable,old-style-class,reimported,sta r-args,super-on-old-class,superfluous-parens,too-few-public-methods,too-many-anc estors,too-many-arguments,too-many-branches,too-many-function-args,too-many-inst ance-attributes,too-many-lines,too-many-locals,too-many-public-methods,too-many- return-statements,too-many-statements,trailing-whitespace,unnecessary-semicolon, unpacking-non-sequence,useless-else-on-loop,unused-argument |
6 | 6 |
7 | 7 |
8 [REPORTS] | 8 [REPORTS] |
9 | 9 |
10 # Don't write out full reports, just messages. | 10 # Don't write out full reports, just messages. |
11 reports=no | 11 reports=no |
12 | 12 |
13 | 13 |
14 [VARIABLES] | |
15 | |
16 # A regular expression matching the name of dummy variables (i.e. expectedly | |
dtu
2015/05/04 22:26:39
Ok, sorry, maybe it's better to not copy the stand
eakuefner
2015/05/04 22:40:03
Done.
| |
17 # not used). | |
18 dummy-variables-rgx=_+ | |
19 | |
20 | |
14 [FORMAT] | 21 [FORMAT] |
15 | 22 |
16 # We use two spaces for indents, instead of the usual four spaces or tab. | 23 # We use two spaces for indents, instead of the usual four spaces or tab. |
17 indent-string=' ' | 24 indent-string=' ' |
OLD | NEW |