We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61f8424 commit eacacbeCopy full SHA for eacacbe
.gitignore
@@ -3,3 +3,5 @@
3
erl_crash.dump
4
*.ez
5
/doc
6
+/priv/plts/*.plt
7
+/priv/plts/*.plt.hash
.travis.yml
@@ -35,3 +35,4 @@ cache:
35
directories:
36
- .mix
37
- _build
38
+ - priv/plts
mix.exs
@@ -10,7 +10,11 @@ defmodule Sentry.Mixfile do
10
package: package(),
11
deps: deps(),
12
elixirc_paths: elixirc_paths(Mix.env()),
13
- dialyzer: [plt_add_deps: :transitive, plt_add_apps: [:mix]],
+ dialyzer: [
14
+ plt_file: {:no_warn, "priv/plts/dialyzer.plt"},
15
+ plt_add_deps: :app_tree,
16
+ plt_add_apps: [:mix, :plug]
17
+ ],
18
docs: [extras: ["README.md"], main: "readme"]
19
]
20
end
0 commit comments