Current section
Files
Jump to
Current section
Files
mix.exs
defmodule CredoExt.MixProject do
use Mix.Project
def project do
[
app: :credo_ext,
version: "0.1.1",
elixir: "~> 1.16",
start_permanent: Mix.env() == :prod,
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [coveralls: :test],
deps: deps(),
description: "A module for Custom Credo checks (extensions) in addition to the default checks.",
package: package(),
source_url: "https://github.com/zakurakin/credo_ext"
]
end
defp deps do
[
{:excoveralls, "~> 0.18", only: [:dev, :test]},
{:credo, "~> 1.7", runtime: false},
{:ex_doc, "~> 0.32", runtime: false}
]
end
defp package do
[
name: "credo_ext",
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/zakurakin/credo_ext"}
]
end
end