-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
80 lines (72 loc) · 2.12 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
72
73
74
75
76
77
78
79
80
defmodule LazyFor.MixProject do
use Mix.Project
@app :lazy_for
@version "1.1.0"
System.put_env("MIX_LOADED_APP", to_string(@app))
def project do
[
app: @app,
version: @version,
elixir: "~> 1.9",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
package: package(),
aliases: aliases(),
deps: deps(),
description: "Lazy implementation of Kernel.SpecialForms.for/1 based on streams",
name: "LazyFor",
xref: [exclude: []],
docs: docs(),
dialyzer: [
plt_file: {:no_warn, ".dialyzer/plts/dialyzer.plt"},
ignore_warnings: ".dialyzer/ignore.exs"
],
preferred_cli_env: [coveralls: :test, "coveralls.github": :test],
test_coverage: [tool: ExCoveralls]
]
end
def application, do: [extra_applications: []]
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(:ci), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp aliases do
[
quality: ["format", "credo --strict", "dialyzer"],
"quality.ci": [
"format --check-formatted",
"credo --strict",
"dialyzer --halt-exit-status"
]
]
end
defp deps do
[
# dev, test
{:benchfella, "~> 0.3", only: [:dev]},
{:credo, "~> 1.0", only: [:dev, :ci], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev, :ci], runtime: false},
{:excoveralls, "~> 0.13", only: [:test]},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp package() do
[
# These are the default files included in the package
files: ~w(lib .formatter.exs .dialyzer/ignore.exs mix.exs README*),
maintainers: ["Aleksei Matiushkin"],
licenses: ["Kantox LTD"],
links: %{"GitHub" => "https://github.com/am-kantox/#{@app}"}
]
end
defp docs() do
[
main: "readme",
source_ref: "v#{@version}",
source_url: "https://github.com/am-kantox/#{@app}",
canonical: "http://hexdocs.pm/#{@app}",
logo: "stuff/logo-48x48.png",
extras: ["README.md"],
groups_for_modules: []
]
end
end