(rootDir: string)
| 272 | * the built-in defaults and the project's `.gitignore`. |
| 273 | */ |
| 274 | export function loadExcludePatterns(rootDir: string): string[] { |
| 275 | return loadParsedConfig(rootDir).exclude; |
| 276 | } |
| 277 | |
| 278 | /** Test/maintenance hook: forget cached config (e.g. after rewriting it in a test). */ |
| 279 | export function clearProjectConfigCache(): void { |
no test coverage detected