Packages

Git hooks made easy. Husky can prevent bad git commit, git push and more 🐶 ❤️ woof! - Elixir equivalent of the husky npm package

Current section

Files

Jump to
husky priv .husky.example.json
Raw

priv/.husky.example.json

{
"husky": {
"hooks": {
"pre_commit": "mix format && mix credo --strict",
"pre_push": "mix format --check-formatted && mix credo --strict && mix test"
}
}
}