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)
| 1464 | _cpplint_state.SetFilters(filters) |
| 1465 | |
| 1466 | def _AddFilters(filters): |
| 1467 | """Adds more filter overrides. |
| 1468 | |
| 1469 | Unlike _SetFilters, this function does not reset the current list of filters |
| 1470 | available. |
| 1471 | |
| 1472 | Args: |
| 1473 | filters: A string of comma-separated filters (eg "whitespace/indent"). |
| 1474 | Each filter should start with + or -; else we die. |
| 1475 | """ |
| 1476 | _cpplint_state.AddFilters(filters) |
| 1477 | |
| 1478 | def _BackupFilters(): |
| 1479 | """ Saves the current filter list to backup storage.""" |
no test coverage detected