ExCheck

Runs all checks configured in an Elixir project.

There are following benefits from using this task:

Getting started

Add ex_check to your list of dependencies in mix.exs:

def deps do
  [
    {:ex_check, "~> 0.1.0", only: :dev, runtime: false}
  ]
end

Run the check:

mix check

Learn more about the task workflow, checks, configuration and command line options:

mix help check

(or read docs at https://hexdocs.pm/ex_check)