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
I have a git hook to check code style before commit(using eslint). If my code has error style, commit will not continue. If only have warnings, they will be shown, but commit can continue.
now standard-version will perform a release commit, which will also trigger the git hook.
However, it treat all stderr as illegal and just exit without continuing to perform git tag.
I have a git hook to check code style before commit(using eslint). If my code has error style, commit will not continue. If only have warnings, they will be shown, but commit can continue.
now
standard-version
will perform a release commit, which will also trigger the git hook.However, it treat all
stderr
as illegal and just exit without continuing to performgit tag
.see the code
i think it should either prevent the git hooks when committing or improve the error handler
The text was updated successfully, but these errors were encountered: