(&self, repo_root: &Path)
| 333 | } |
| 334 | |
| 335 | fn is_installed(&self, repo_root: &Path) -> bool { |
| 336 | self.is_installed_at(&Self::local_hooks_path(repo_root)) || self.is_installed_global() |
| 337 | } |
| 338 | |
| 339 | fn supported_hooks(&self) -> Vec<HookType> { |
| 340 | vec![ |
nothing calls this directly
no test coverage detected