You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like HUSKY_SKIP_INSTALL, introduced in #178 is no longer preventing husky install in v7 (or since the change to set core.hooksPath rather than adding hooks to .git/hooks. Is this option no longer supported, or is there a way to prevent hooks installation for those who do not want them set up in their clones? Thanks!
The text was updated successfully, but these errors were encountered:
Related: #468
Unless you really have to use husky, I'd recommend to remove it from your repo, for two simple reasons:
Running side effects as part of standard Git operations can be done without Husky (e.g. by editing default hooks in .git/hooks)
Trying to enforce checks client side makes little sense, as these checks can easily be skipped with --no-verify, so Husky hooks are not a replacement for a proper CI setup
Troubleshoot
https://typicode.github.io/husky/#/?id=troubleshoot
It seems like
HUSKY_SKIP_INSTALL
, introduced in #178 is no longer preventing husky install in v7 (or since the change to setcore.hooksPath
rather than adding hooks to.git/hooks
. Is this option no longer supported, or is there a way to prevent hooks installation for those who do not want them set up in their clones? Thanks!The text was updated successfully, but these errors were encountered: