Skip to content

Commit

Permalink
chore: configure dialyzer plt paths (elixir-tools#183)
Browse files Browse the repository at this point in the history
  • Loading branch information
dvic authored Aug 14, 2023
1 parent d53d8e4 commit c57cca4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,7 @@ next_ls-*.tar
# Temporary files, for example, from tests.
/tmp/
burrito_out

# Ignore dialyzer plt files
/priv/plts/*.plt
/priv/plts/*.plt.hash
6 changes: 5 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ defmodule NextLS.MixProject do
main: "README",
extras: ["README.md"]
],
dialyzer: [ignore_warnings: ".dialyzer_ignore.exs"]
dialyzer: [
plt_core_path: "priv/plts",
plt_local_path: "priv/plts",
ignore_warnings: ".dialyzer_ignore.exs"
]
]
end

Expand Down

0 comments on commit c57cca4

Please sign in to comment.