Sets the module's error-message filters. These filters are applied when deciding whether to emit a given error message. Args: filters: A string of comma-separated filters (eg "whitespace/indent"). Each filter should start with + or -; else we die.
(filters)
| 1452 | |
| 1453 | |
| 1454 | def _SetFilters(filters): |
| 1455 | """Sets the module's error-message filters. |
| 1456 | |
| 1457 | These filters are applied when deciding whether to emit a given |
| 1458 | error message. |
| 1459 | |
| 1460 | Args: |
| 1461 | filters: A string of comma-separated filters (eg "whitespace/indent"). |
| 1462 | Each filter should start with + or -; else we die. |
| 1463 | """ |
| 1464 | _cpplint_state.SetFilters(filters) |
| 1465 | |
| 1466 | def _AddFilters(filters): |
| 1467 | """Adds more filter overrides. |
no test coverage detected