forked from rrrene/credo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
55 lines (51 loc) · 1.37 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
defmodule Credo.Mixfile do
use Mix.Project
def project do
[
app: :credo,
version: "1.2.0-dev",
elixir: ">= 1.5.0",
escript: [main_module: Credo.CLI],
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
test_coverage: [tool: Coverex.Task],
name: "Credo",
description: "A static code analysis tool with a focus on code consistency and teaching.",
package: package(),
source_url: "https://github.com/rrrene/credo",
# The main page in the docs
docs: [main: "Credo", logo: "assets/logo.png", extras: ["README.md"]]
]
end
defp package do
[
files: [
".credo.exs",
".template.check.ex",
"debug-template.html",
"lib",
"LICENSE",
"mix.exs",
"README.md"
],
maintainers: ["René Föhring"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/rrrene/credo",
"Changelog" => "https://github.com/rrrene/credo/blob/master/CHANGELOG.md"
}
]
end
def application do
[mod: {Credo.Application, []}, applications: [:bunt, :logger, :inets]]
end
defp deps do
[
{:bunt, "~> 0.2.0"},
{:jason, "~> 1.0"},
{:ex_doc, "~> 0.16", only: :dev, runtime: false},
{:inch_ex, "~> 0.1", only: [:dev, :test], runtime: false}
]
end
end