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)
| 891 | _cpplint_state.SetFilters(filters) |
| 892 | |
| 893 | def _AddFilters(filters): |
| 894 | """Adds more filter overrides. |
| 895 | |
| 896 | Unlike _SetFilters, this function does not reset the current list of filters |
| 897 | available. |
| 898 | |
| 899 | Args: |
| 900 | filters: A string of comma-separated filters (eg "whitespace/indent"). |
| 901 | Each filter should start with + or -; else we die. |
| 902 | """ |
| 903 | _cpplint_state.AddFilters(filters) |
| 904 | |
| 905 | def _BackupFilters(): |
| 906 | """ Saves the current filter list to backup storage.""" |
no test coverage detected