Resolve the path to ``.devserver.lock``.
(project_dir: Path)
| 131 | |
| 132 | |
| 133 | def get_devserver_lock_path(project_dir: Path) -> Path: |
| 134 | """Resolve the path to ``.devserver.lock``.""" |
| 135 | return _resolve_path(project_dir, ".devserver.lock") |
| 136 | |
| 137 | |
| 138 | def get_claude_settings_path(project_dir: Path) -> Path: |
no test coverage detected