Open eMdOS opened 2 years ago
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 😬!
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 😬!