(pattern: string)
| 70 | } |
| 71 | |
| 72 | function normalizeGlobPattern(pattern: string): string { |
| 73 | const normalized = pattern.replaceAll('\\', '/') |
| 74 | return normalized.startsWith('./') ? normalized.slice(2) : normalized |
| 75 | } |
| 76 | |
| 77 | export function buildFileGlobRipgrepArgs({ |
| 78 | ignorePatterns, |
no outgoing calls
no test coverage detected