(segment: string)
| 160 | } |
| 161 | |
| 162 | function shouldIgnoreSegment(segment: string): boolean { |
| 163 | return segment.startsWith(".") || IGNORED_DIRS.has(segment) || IGNORED_FILES.has(segment); |
| 164 | } |
| 165 | |
| 166 | function collectProjectFiles(rootDir: string, currentDir: string, paths: string[]): void { |
| 167 | for (const entry of readdirSync(currentDir, { withFileTypes: true })) { |
no outgoing calls
no test coverage detected