removeLint is the callback function for the uninstall command.
(isGlobal bool)
| 9 | |
| 10 | // removeLint is the callback function for the uninstall command. |
| 11 | func removeLint(isGlobal bool) error { |
| 12 | return gitRemoveHook(isGlobal) |
| 13 | } |
| 14 | |
| 15 | // gitRemoveHook removes commitlint from git config by unsetting core.hooksPath. |
| 16 | // It prompts for confirmation before making any changes. |
no test coverage detected