(path: string)
| 42 | } |
| 43 | |
| 44 | function shouldTrack(path: string): boolean { |
| 45 | if (!path) return false; |
| 46 | return !IGNORE_PREFIXES.some((prefix) => path.startsWith(prefix)); |
| 47 | } |
| 48 | |
| 49 | function clampFilesPerTick(value: number | undefined): number { |
| 50 | if (!Number.isFinite(value)) return DEFAULT_FILES_PER_TICK; |
no outgoing calls
no test coverage detected