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)
| 1654 | |
| 1655 | |
| 1656 | def _AddFilters(filters): |
| 1657 | """Adds more filter overrides. |
| 1658 | |
| 1659 | Unlike _SetFilters, this function does not reset the current list of filters |
| 1660 | available. |
| 1661 | |
| 1662 | Args: |
| 1663 | filters: A string of comma-separated filters (eg "whitespace/indent"). |
| 1664 | Each filter should start with + or -; else we die. |
| 1665 | """ |
| 1666 | _cpplint_state.AddFilters(filters) |
| 1667 | |
| 1668 | |
| 1669 | def _BackupFilters(): |
no test coverage detected
searching dependent graphs…