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 lib husky.ex
Raw

lib/husky.ex

defmodule Husky do
def main(argv \\ []) do
{_, code} = System.cmd("mix", ["husky.execute" | argv])
System.halt(code)
end
end