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've set commitlint locally, and I've been trying to use it from Komondor.
commitlint
let config = PackageConfiguration([ "komondor": [ "commit-msg": "npx --no -- commitlint --edit", ], ]).write() #endif
Apparently, the git parameter that the commit-msg hook expects is not being passed.
commit-msg
I've also tried things like:
"commit-msg": "npx --no -- commitlint --edit $1",
or
"commit-msg": "npx --no -- commitlint --edit '$1'",
... but cannot make it work; cannot find documentation about it either.
How could I get it working? 🤔 - Thanks in advance 😬!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've set
commitlint
locally, and I've been trying to use it from Komondor.Apparently, the git parameter that the
commit-msg
hook expects is not being passed.I've also tried things like:
or
... but cannot make it work; cannot find documentation about it either.
How could I get it working? 🤔 - Thanks in advance 😬!
The text was updated successfully, but these errors were encountered: