Excluder allows us to support different methods of excluding in the future.
| 8 | |
| 9 | // Excluder allows us to support different methods of excluding in the future. |
| 10 | type Excluder interface { |
| 11 | shouldExclude(path string) bool |
| 12 | } |
| 13 | |
| 14 | // regexpExclude uses regular expressions to tell if a file/path should be |
| 15 | // excluded. |
no outgoing calls
no test coverage detected