(patterns: string[])
| 53 | } |
| 54 | |
| 55 | private addPatterns(patterns: string[]) { |
| 56 | this.ig.add(patterns); |
| 57 | this.patterns.push(...patterns); |
| 58 | } |
| 59 | |
| 60 | isIgnored(filePath: string): boolean { |
| 61 | const resolved = path.resolve(this.projectRoot, filePath); |
no test coverage detected