I've set commitlint locally, and I've been trying to use it from Komondor.
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.
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 π¬!