You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Your version of commitizen is really outdated. You should update because there has been numerous changes and fixes since (1.17 was more than 4 years ago). commitizen is a hook to be used on message validation only (the command was cz check --commit-msg-file) and pre-commit wasn't having anything to specify the expected phase to run a check so you needed to it manually by yourself in your config. So in your case you miss the stages: [commit-msg] statement. In the commit phase, pre-commit is passing modified files as arguments to the hook so it won't ever work without this statement on 1.17.
So either upgrade to 3.x (ideally to the latest) and it will just fix your issue, either if you need to stick with 1.17 for any reason, add the missing statement and consult the matching documentation to avoid more versioning issues: https://github.com/commitizen-tools/commitizen/blob/v1.17.1/docs/check.md
Note: some other plugins in your pre-commit seems outdated too. If you are crafting a new pre-commit file, I strongly advise using the latest version of each plugin to avoid starting with a tech debt.
Description
I installed the commitizen pre-commit hook along with some other pre-commit hooks:
This config works fine in another project:
But when I run it in another project, it seems to include (arbitrary?) file paths in the
cz
command:Steps to reproduce
.pre-commit-config.yaml
:Current behavior
If I then remove
poetry.lock
andrequirements.txt
, I get the following:Where it seems like my whole
.pre-commit-config.yaml
is included in thecz
command ran by the hook.Desired behavior
Screenshots
No response
Environment
The text was updated successfully, but these errors were encountered: