(filePath: string)
| 98 | * relevance hint for disambiguation, not a hard claim. |
| 99 | */ |
| 100 | export function isGeneratedFile(filePath: string): boolean { |
| 101 | return GENERATED_PATTERNS.some((p) => p.test(filePath)); |
| 102 | } |
| 103 | |
| 104 | // ============================================================================= |
| 105 | // Content-header detection (#1500) |
no outgoing calls
no test coverage detected