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
When attempting to commit using git commit, the pre-commit hook fails with the following error: error: required option '-t, --type <type>' not specified
To reproduce run the following commands (requires docker to be installed):
When attempting to commit using
git commit
, the pre-commit hook fails with the following error:error: required option '-t, --type <type>' not specified
To reproduce run the following commands (requires
docker
to be installed):docker run -it --rm node:22 /bin/bash
git config --global user.name "My Name" && git config --global user.email "[email protected]"
git clone https://github.com/Escape-Technologies/graphql-armor.git && cd graphql-armor
./install-dev.sh
touch file.md && git add file.md && git commit -m "add file.md"
The text was updated successfully, but these errors were encountered: