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)
| 1609 | |
| 1610 | |
| 1611 | def _AddFilters(filters): |
| 1612 | """Adds more filter overrides. |
| 1613 | |
| 1614 | Unlike _SetFilters, this function does not reset the current list of filters |
| 1615 | available. |
| 1616 | |
| 1617 | Args: |
| 1618 | filters: A string of comma-separated filters (eg "whitespace/indent"). |
| 1619 | Each filter should start with + or -; else we die. |
| 1620 | """ |
| 1621 | _cpplint_state.AddFilters(filters) |
| 1622 | |
| 1623 | |
| 1624 | def _BackupFilters(): |
no test coverage detected