(rootDir: string)
| 322 | * the built-in defaults and the project's `.gitignore`. |
| 323 | */ |
| 324 | export function loadExcludePatterns(rootDir: string): string[] { |
| 325 | return loadParsedConfig(rootDir).exclude; |
| 326 | } |
| 327 | |
| 328 | /** |
| 329 | * Load the validated `include` patterns for a project, mtime-cached. |
no test coverage detected