| 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= | 5 disable= |
| 6 abstract-class-little-used, | 6 abstract-class-little-used, |
| 7 abstract-class-not-used, | 7 abstract-class-not-used, |
| 8 bad-builtin, | 8 bad-builtin, |
| 9 bad-continuation, | 9 bad-continuation, |
| 10 bad-indentation, | 10 bad-indentation, |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 | 45 |
| 46 | 46 |
| 47 [FORMAT] | 47 [FORMAT] |
| 48 | 48 |
| 49 # We use two spaces for indents, instead of the usual four spaces or tab. | 49 # We use two spaces for indents, instead of the usual four spaces or tab. |
| 50 indent-string=' ' | 50 indent-string=' ' |
| 51 | 51 |
| 52 # We suppress long line check for lines that contain only the URL (with or | 52 # We suppress long line check for lines that contain only the URL (with or |
| 53 # without quote). | 53 # without quote). |
| 54 ignore-long-lines=^\s*'?https?://\S+'?$ | 54 ignore-long-lines=^\s*'?https?://\S+'?$ |
| 55 |
| OLD | NEW |