forked from jeremyjh/dialyxir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
60 lines (54 loc) · 1.39 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
defmodule Dialyxir.Mixfile do
use Mix.Project
def project do
[
app: :dialyxir,
version: "1.0.0",
elixir: ">= 1.6.0",
elixirc_paths: elixirc_paths(Mix.env()),
description: description(),
package: package(),
deps: deps(),
dialyzer: [
plt_apps: [:dialyzer, :elixir, :kernel, :mix, :stdlib, :erlex],
ignore_warnings: ".dialyzer_ignore.exs",
flags: [:unmatched_returns, :error_handling, :underspecs]
],
# Docs
name: "Dialyxir",
source_url: "https://github.com/jeremyjh/dialyxir",
homepage_url: "https://github.com/jeremyjh/dialyxir",
# The main page in the docs
docs: [main: "readme", extras: ["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}
]
end
defp package do
[
files: [
"lib",
"mix.exs",
"README.md",
"LICENSE"
],
maintainers: ["Jeremy Huffman"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/jeremyjh/dialyxir"}
]
end
end