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
https://github.com/joshfriend/hooker/blob/master/examples/commit-msg/validate_commit_text.py seems to cover every rule on http://chris.beams.io/posts/git-commit/ except for the imperative mood check.
A complete check would be nearly impossible without natural language processing, but you could what pep257 does and confirm the first word does not end in a single "s": https://github.com/GreenSteam/pep257/blob/0cb5c2ebc9d8789e655e609413b778d28c02084a/pep257.py#L1146-L1150
pep257
The text was updated successfully, but these errors were encountered:
You could also wait for a solution to: PyCQA/pydocstyle#68
Sorry, something went wrong.
17d929a
No branches or pull requests
https://github.com/joshfriend/hooker/blob/master/examples/commit-msg/validate_commit_text.py seems to cover every rule on http://chris.beams.io/posts/git-commit/ except for the imperative mood check.
A complete check would be nearly impossible without natural language processing, but you could what
pep257
does and confirm the first word does not end in a single "s": https://github.com/GreenSteam/pep257/blob/0cb5c2ebc9d8789e655e609413b778d28c02084a/pep257.py#L1146-L1150The text was updated successfully, but these errors were encountered: