@@ -13,8 +13,7 @@ defmodule ExUnion.MixProject do
13
13
coveralls: :test ,
14
14
"coveralls.detail": :test ,
15
15
"coveralls.post": :test ,
16
- "coveralls.html": :test ,
17
- dialyzer: :dialyzer
16
+ "coveralls.html": :test
18
17
] ,
19
18
test_coverage: [ tool: ExCoveralls ] ,
20
19
start_permanent: Mix . env ( ) == :prod ,
@@ -35,7 +34,7 @@ defmodule ExUnion.MixProject do
35
34
]
36
35
end
37
36
38
- defp elixirc_paths ( :dialyzer ) , do: [ "examples" , "lib" ]
37
+ defp elixirc_paths ( :dev ) , do: [ "examples" , "lib" ]
39
38
defp elixirc_paths ( _ ) , do: [ "lib" ]
40
39
41
40
# Run "mix help compile.app" to learn about applications.
@@ -49,7 +48,7 @@ defmodule ExUnion.MixProject do
49
48
# See the documentation for `Mix` for more info on aliases.
50
49
defp aliases do
51
50
[
52
- "check.all": [ "format --check-formatted" , "credo" ]
51
+ "check.all": [ "format --check-formatted" , "credo" , "dialyzer" ]
53
52
]
54
53
end
55
54
@@ -58,7 +57,7 @@ defmodule ExUnion.MixProject do
58
57
[
59
58
# No Runtime
60
59
{ :credo , ">= 1.0.0" , only: :dev , runtime: false } ,
61
- { :dialyxir , "~> 1.0" , only: :dialyzer , runtime: false } ,
60
+ { :dialyxir , "~> 1.0" , only: :dev , runtime: false } ,
62
61
{ :ex_doc , "~> 0.23" , only: :dev , runtime: false } ,
63
62
64
63
# Test
0 commit comments