forked from jeremyjh/dialyxir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
71 lines (64 loc) · 1.59 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
defmodule Dialyxir.Mixfile do
use Mix.Project
@source_url "https://github.com/jeremyjh/dialyxir"
@version "1.1.0"
def project do
[
app: :dialyxir,
version: @version,
elixir: ">= 1.6.0",
elixirc_paths: elixirc_paths(Mix.env()),
description: description(),
package: package(),
deps: deps(),
aliases: [test: "test --no-start"],
dialyzer: [
plt_apps: [:dialyzer, :elixir, :kernel, :mix, :stdlib, :erlex],
ignore_warnings: ".dialyzer_ignore.exs",
flags: [:unmatched_returns, :error_handling, :underspecs]
],
# Docs
name: "Dialyxir",
homepage_url: @source_url,
# The main page in the docs
docs: [
main: "readme",
source_url: @source_url,
source_ref: @version,
extras: ["CHANGELOG.md", "README.md"]
]
]
end
def application do
[mod: {Dialyxir, []}, extra_applications: [:dialyzer, :crypto, :mix]]
end
defp description do
"""
Mix tasks to simplify use of Dialyzer in Elixir projects.
"""
end
defp elixirc_paths(:examples), do: ["lib", "test/examples"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:erlex, ">= 0.2.6"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp package do
[
files: [
"lib",
"mix.exs",
"README.md",
"LICENSE"
],
maintainers: ["Jeremy Huffman"],
licenses: ["Apache-2.0"],
links: %{
"Changelog" => "https://hexdocs.pm/dialyxir/changelog.html",
"GitHub" => @source_url
}
]
end
end