()
| 192 | } |
| 193 | |
| 194 | function getSettingsPaths(): string[] { |
| 195 | return SETTING_SOURCES.map(source => |
| 196 | getSettingsFilePathForSource(source), |
| 197 | ).filter(path => path !== undefined) |
| 198 | } |
| 199 | |
| 200 | export function isClaudeSettingsPath(filePath: string): boolean { |
| 201 | // SECURITY: Normalize path structure first to prevent bypass via redundant ./ |
no test coverage detected