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
commitlint currently fails the messages auto-generated by git for --fixup and --squash commits.
I think commitlint should always permit these commit messages.
Since the point of these commits is to be rebased into other commits, their messages won't be in the commit history for terribly long. And they're already an established part of the git ecosystem.
I'm currently working around this by using -n every time I --fixup, but it's a friction point each time I forget.
The text was updated successfully, but these errors were encountered:
Seems like this will have the same solution as #10 .. a whitelist of regex that, when matching the commit's first line, mark this commit message as OK.
commitlint
currently fails the messages auto-generated by git for--fixup
and--squash
commits.I think
commitlint
should always permit these commit messages.Since the point of these commits is to be rebased into other commits, their messages won't be in the commit history for terribly long. And they're already an established part of the git ecosystem.
I'm currently working around this by using
-n
every time I--fixup
, but it's a friction point each time I forget.The text was updated successfully, but these errors were encountered: