(&self, repo_root: &Path)
| 295 | } |
| 296 | |
| 297 | fn is_installed(&self, repo_root: &Path) -> bool { |
| 298 | hooks_file_has_atomic_hooks(&Self::local_hooks_path(repo_root)) |
| 299 | || self.is_installed_global() |
| 300 | } |
| 301 | |
| 302 | fn supported_hooks(&self) -> Vec<HookType> { |
| 303 | vec![ |
nothing calls this directly
no test coverage detected