Skip to content

Instantly share code, notes, and snippets.

@cyyynthia
Created December 20, 2025 15:35
Show Gist options
  • Select an option

  • Save cyyynthia/6f31f4edce17807fc5aa7a240d6def01 to your computer and use it in GitHub Desktop.

Select an option

Save cyyynthia/6f31f4edce17807fc5aa7a240d6def01 to your computer and use it in GitHub Desktop.
Mise-powered Git hooks
[settings]
experimental = true
[tools]
typos = "latest"
[hooks]
postinstall = [
'printf "#!/usr/bin/env bash\n$(which mise) task run _precommit" > .git/hooks/pre-commit',
"chmod +x .git/hooks/pre-commit",
]
[tasks._precommit]
hide = true
run = [
"typos -c .config/typos/config.toml",
...
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment