Chromium Code Reviews| 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 [FORMAT] | 14 [FORMAT] |
| 15 | 15 |
| 16 dummy-variables-rgx=_+ | |
|
dtu
2015/05/04 22:19:18
I think these need to be in a section named [VARIA
eakuefner
2015/05/04 22:21:14
Done.
| |
| 17 | |
| 16 # We use two spaces for indents, instead of the usual four spaces or tab. | 18 # We use two spaces for indents, instead of the usual four spaces or tab. |
| 17 indent-string=' ' | 19 indent-string=' ' |
| OLD | NEW |