Resolve the path to ``.claude_settings.json``.
(project_dir: Path)
| 136 | |
| 137 | |
| 138 | def get_claude_settings_path(project_dir: Path) -> Path: |
| 139 | """Resolve the path to ``.claude_settings.json``.""" |
| 140 | return _resolve_path(project_dir, ".claude_settings.json") |
| 141 | |
| 142 | |
| 143 | def get_claude_assistant_settings_path(project_dir: Path) -> Path: |
no test coverage detected