We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d53d8e4 commit c57cca4Copy full SHA for c57cca4
.gitignore
@@ -25,3 +25,7 @@ next_ls-*.tar
25
# Temporary files, for example, from tests.
26
/tmp/
27
burrito_out
28
+
29
+# Ignore dialyzer plt files
30
+/priv/plts/*.plt
31
+/priv/plts/*.plt.hash
mix.exs
@@ -19,7 +19,11 @@ defmodule NextLS.MixProject do
19
main: "README",
20
extras: ["README.md"]
21
],
22
- dialyzer: [ignore_warnings: ".dialyzer_ignore.exs"]
+ dialyzer: [
23
+ plt_core_path: "priv/plts",
24
+ plt_local_path: "priv/plts",
+ ignore_warnings: ".dialyzer_ignore.exs"
+ ]
]
end
0 commit comments