(rootDir: string)
| 364 | * the built-in defaults and the project's `.gitignore`. |
| 365 | */ |
| 366 | export function loadExcludePatterns(rootDir: string): string[] { |
| 367 | return loadParsedConfig(rootDir).exclude; |
| 368 | } |
| 369 | |
| 370 | /** |
| 371 | * Load the validated `deprioritize` patterns for a project, mtime-cached. |
no test coverage detected