View Source Installation
The easiest way to add Credo to your project is by using Mix.
Add :credo
as a dependency to your project's mix.exs
:
defp deps do
[
{:credo, "~> 1.6", only: [:dev, :test], runtime: false}
]
end
And run:
$ mix deps.get