| 22 | } |
| 23 | |
| 24 | type ignoreParser struct { |
| 25 | ignoreParser gitignore.IgnoreParser |
| 26 | |
| 27 | absoluteNegatePatterns []string |
| 28 | requireFullScan bool |
| 29 | } |
| 30 | |
| 31 | func (i *ignoreParser) Matches(relativePath string, isDir bool) bool { |
| 32 | relativePath = strings.TrimRight(relativePath, "/") |
nothing calls this directly
no outgoing calls
no test coverage detected