Skip to content

Commit c57cca4

Browse files
authored
chore: configure dialyzer plt paths (#183)
1 parent d53d8e4 commit c57cca4

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,7 @@ next_ls-*.tar
2525
# Temporary files, for example, from tests.
2626
/tmp/
2727
burrito_out
28+
29+
# Ignore dialyzer plt files
30+
/priv/plts/*.plt
31+
/priv/plts/*.plt.hash

mix.exs

+5-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ defmodule NextLS.MixProject do
1919
main: "README",
2020
extras: ["README.md"]
2121
],
22-
dialyzer: [ignore_warnings: ".dialyzer_ignore.exs"]
22+
dialyzer: [
23+
plt_core_path: "priv/plts",
24+
plt_local_path: "priv/plts",
25+
ignore_warnings: ".dialyzer_ignore.exs"
26+
]
2327
]
2428
end
2529

0 commit comments

Comments
 (0)