(&self, repo_root: &Path)
| 145 | } |
| 146 | |
| 147 | fn is_installed(&self, repo_root: &Path) -> bool { |
| 148 | repo_root.join(HERMES_DIR).is_dir() || Self::config_path().is_some_and(|path| path.exists()) |
| 149 | } |
| 150 | |
| 151 | fn supported_hooks(&self) -> Vec<HookType> { |
| 152 | vec![ |
no test coverage detected