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
husky - DEPRECATED
Please remove the following two lines from .husky/pre-commit:
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
They WILL FAIL in v10.0.0
I haven't looked into what exactly needs changed or what they're doing in v10 but we should prep for it before the update lands if possible
The text was updated successfully, but these errors were encountered:
@lukemckinstry it's not an error, just a warning. If you're not in the CLI your git client may be hiding it. If you're using VSCode you can see it in the git output panel but that panel is very noisy so it's easy to miss it. Also please make sure you're using the latest version of husky, not sure if that matters but I assume it does.
From main:
git checkout -b testing-husky
touch test.js
git add .
git commit -m 'testing'# see error# to cleanup
git checkout main
git branch -D testing-husky
Got a warning for
git commit
I haven't looked into what exactly needs changed or what they're doing in v10 but we should prep for it before the update lands if possible
The text was updated successfully, but these errors were encountered: