We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I implemented the hook and I get an error even it matches.
[Invalid Commit Message] ------------------------ Valid types: build ci docs feat fix perf refactor style test chore Max length (first line): 52 Min length (first line): 1 Regex: ^[.0-9]+$|build |ci |docs |feat |fix |perf |refactor |style |test |chore)(\(.+\))?: .{1,52}$ Actual commit message: "refactor(async): almost done" Actual length: 29
and I also dont get it why my regex has line breaks in it
I am on windows
The text was updated successfully, but these errors were encountered:
Same issue. The regex seems to be invalid according to https://regex101.com/, since there's an unmatched ellipsis.
Sorry, something went wrong.
regexp
regexp="${regexp}^([Rr]evert|[Mm]erge):? )?.*$|^("
? )?
(
@@ -48,10 +48,10 @@ function set_config_values() { - regexp="^(" + regexp="^[.0-9]+$|" - regexp="${regexp}revert: )?(\w+)(" + regexp="${regexp}^([Rr]evert|[Mm]erge):? )?.*$|^("
No branches or pull requests
I implemented the hook and I get an error even it matches.
and I also dont get it why my regex has line breaks in it
I am on windows
The text was updated successfully, but these errors were encountered: