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 install.ex
Raw

lib/install.ex

defmodule Mix.Tasks.Husky.Install do
use Mix.Task
def run(args) do
IO.puts("... running husky install")
Mix.shell.info Enum.join(args, " ")
end
end