(file string)
| 59 | // The PathMatcher interface helps us manage these ignores. |
| 60 | type PathMatcher interface { |
| 61 | Matches(file string) (bool, error) |
| 62 | |
| 63 | // If this matches the entire dir, we can often optimize filetree walks a bit. |
| 64 | MatchesEntireDir(file string) (bool, error) |
no outgoing calls