| 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(telemetry-team): Shrink this list to as small as possible. | 4 # TODO(telemetry-team): Shrink this list to as small as possible. |
| 5 disable= | 5 disable= |
| 6 design, | 6 design, |
| 7 similarities, | 7 similarities, |
| 8 | |
| 9 abstract-class-little-used, | |
| 10 abstract-class-not-used, | |
| 11 bad-builtin, | 8 bad-builtin, |
| 12 bad-continuation, | |
| 13 broad-except, | 9 broad-except, |
| 14 fixme, | 10 fixme, |
| 15 global-statement, | 11 global-statement, |
| 16 interface-not-implemented, | 12 interface-not-implemented, |
| 17 invalid-name, | 13 invalid-name, |
| 18 locally-disabled, | 14 locally-disabled, |
| 19 locally-enabled, | 15 locally-enabled, |
| 20 logging-not-lazy, | 16 logging-not-lazy, |
| 21 missing-docstring, | 17 missing-docstring, |
| 22 no-member, | 18 no-member, |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 | 62 |
| 67 # Tells wether missing members accessed in mixin class should be ignored. A | 63 # Tells wether missing members accessed in mixin class should be ignored. A |
| 68 # mixin class is detected if its name ends with "mixin" (case insensitive). | 64 # mixin class is detected if its name ends with "mixin" (case insensitive). |
| 69 ignore-mixin-members=yes | 65 ignore-mixin-members=yes |
| 70 | 66 |
| 71 | 67 |
| 72 [FORMAT] | 68 [FORMAT] |
| 73 | 69 |
| 74 # We use two spaces for indents, instead of the usual four spaces or tab. | 70 # We use two spaces for indents, instead of the usual four spaces or tab. |
| 75 indent-string=' ' | 71 indent-string=' ' |
| OLD | NEW |