forked from exercism/elixir-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
62 lines (57 loc) · 1.85 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
defmodule ElixirAnalyzer.MixProject do
use Mix.Project
def project do
[
app: :elixir_analyzer,
version: "0.1.0",
elixir: "~> 1.15",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
# Turn off protocol consolidation to avoid warning in analyzed code
consolidate_protocols: false,
deps: deps(),
escript: escript(),
preferred_cli_env: [
# run dialyzer in test env so that files in test/support also get checked
dialyzer: :test
],
dialyzer: [
plt_core_path: "priv/plts",
plt_file: {:no_warn, "priv/plts/eventstore.plt"}
# important note:
# The option ignore_warnings only works when running `mix dialyzer` (from `dialyxir`),
# it DOES NOT work when ElixirLS runs dialyzer.
# When using ElixirLS with VSCode reporting dialyzer warnings, obscuring code feedback.
# So to ensure the best experience for devs using VSCode, try to disable dialyzer
# warnings using the `@dialyzer` module attribute
],
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :ex_unit]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:jason, "~> 1.2"},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
{:excoveralls, "~> 0.14", only: :test}
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp escript do
[main_module: ElixirAnalyzer.CLI]
end
end