forked from hauleth/mix_unused
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
49 lines (46 loc) · 1.31 KB
/
mix.exs
File metadata and controls
49 lines (46 loc) · 1.31 KB
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
defmodule MixUnused.MixProject do
use Mix.Project
@source_url "https://github.com/hauleth/mix_unused"
@version "0.4.0"
def project do
[
app: :mix_unused,
description: "Mix compiler tracer for detecting unused public functions",
version: @version,
elixir: "~> 1.10",
package: [
licenses: ~w[MIT],
links: %{
"Changelog" => "https://hexdocs.pm/mix_unused/changelog.html",
"Sponsor" => "https://github.com/sponsors/hauleth",
"GitHub" => @source_url
}
],
deps: [
{:libgraph, ">= 0.0.0"},
{:credo, ">= 0.0.0", only: :dev, runtime: false},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:dialyxir, "~> 1.0", only: :dev, runtime: false},
{:stream_data, ">= 0.0.0", only: [:test, :dev]},
{:covertool, "~> 2.0", only: :test}
],
docs: [
extras: [
"CHANGELOG.md": [],
LICENSE: [title: "License"]
],
main: "Mix.Tasks.Compile.Unused",
source_url: @source_url,
source_url: "v#{@version}",
formatters: ["html"]
],
test_coverage: [tool: :covertool]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:mix, :logger]
]
end
end