(filename)
| 8 | } |
| 9 | |
| 10 | export function isConfigOrTooling(filename) { |
| 11 | const normalized = toRepoRelative(filename); |
| 12 | return ( |
| 13 | /(^|\/)(vite|vitest|tsup|drizzle|autumn)\.config\.ts$/.test(normalized) || |
| 14 | normalized.startsWith("scripts/") |
| 15 | ); |
| 16 | } |
| 17 | |
| 18 | export function isTestLike(filename) { |
| 19 | const normalized = toRepoRelative(filename); |
no test coverage detected