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)
| 985 | _cpplint_state.SetFilters(filters) |
| 986 | |
| 987 | def _AddFilters(filters): |
| 988 | """Adds more filter overrides. |
| 989 | |
| 990 | Unlike _SetFilters, this function does not reset the current list of filters |
| 991 | available. |
| 992 | |
| 993 | Args: |
| 994 | filters: A string of comma-separated filters (eg "whitespace/indent"). |
| 995 | Each filter should start with + or -; else we die. |
| 996 | """ |
| 997 | _cpplint_state.AddFilters(filters) |
| 998 | |
| 999 | def _BackupFilters(): |
| 1000 | """ Saves the current filter list to backup storage.""" |
no test coverage detected