Adds more filter overrides. Unlike _SetFilters, this function does not reset the current list of filters available. Args: filters: A string of comma-separated filters (eg "whitespace/indent"). Each filter should start with + or -; else we die.
(filters)
| 1479 | _cpplint_state.SetFilters(filters) |
| 1480 | |
| 1481 | def _AddFilters(filters): |
| 1482 | """Adds more filter overrides. |
| 1483 | |
| 1484 | Unlike _SetFilters, this function does not reset the current list of filters |
| 1485 | available. |
| 1486 | |
| 1487 | Args: |
| 1488 | filters: A string of comma-separated filters (eg "whitespace/indent"). |
| 1489 | Each filter should start with + or -; else we die. |
| 1490 | """ |
| 1491 | _cpplint_state.AddFilters(filters) |
| 1492 | |
| 1493 | def _BackupFilters(): |
| 1494 | """ Saves the current filter list to backup storage.""" |
no test coverage detected