( source: 'projectSettings' | 'localSettings', )
| 296 | } |
| 297 | |
| 298 | export function getRelativeSettingsFilePathForSource( |
| 299 | source: 'projectSettings' | 'localSettings', |
| 300 | ): string { |
| 301 | switch (source) { |
| 302 | case 'projectSettings': |
| 303 | return join('.claude', 'settings.json') |
| 304 | case 'localSettings': |
| 305 | return join('.claude', 'settings.local.json') |
| 306 | } |
| 307 | } |
| 308 | |
| 309 | export function getSettingsForSource( |
| 310 | source: SettingSource, |
no outgoing calls
no test coverage detected