(repo: string)
| 81 | * @returns Array of known absolute paths, or empty array if none |
| 82 | */ |
| 83 | export function getKnownPathsForRepo(repo: string): string[] { |
| 84 | const config = getGlobalConfig() |
| 85 | const repoKey = repo.toLowerCase() |
| 86 | return config.githubRepoPaths?.[repoKey] ?? [] |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * Filters paths to only those that exist on the filesystem. |
no test coverage detected