Sets the module's error-message filters. These filters are applied when deciding whether to emit a given error message. Args: filters: A string of comma-separated filters (eg "whitespace/indent"). Each filter should start with + or -; else we die.
(filters)
| 1596 | |
| 1597 | |
| 1598 | def _SetFilters(filters): |
| 1599 | """Sets the module's error-message filters. |
| 1600 | |
| 1601 | These filters are applied when deciding whether to emit a given |
| 1602 | error message. |
| 1603 | |
| 1604 | Args: |
| 1605 | filters: A string of comma-separated filters (eg "whitespace/indent"). |
| 1606 | Each filter should start with + or -; else we die. |
| 1607 | """ |
| 1608 | _cpplint_state.SetFilters(filters) |
| 1609 | |
| 1610 | |
| 1611 | def _AddFilters(filters): |
no test coverage detected