Skip to content

Commit

Permalink
Add finch explicitly to Dialyzer
Browse files Browse the repository at this point in the history
Now Finch is optional, Dialyzer doesn't know to load it.
  • Loading branch information
tomtaylor committed Mar 22, 2022
1 parent be2f929 commit 7d448d5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ defmodule Snap.MixProject do
defp dialyzer do
[
plt_core_path: "priv/plts",
plt_file: {:no_warn, "priv/plts/dialyzer.plt"}
plt_file: {:no_warn, "priv/plts/dialyzer.plt"},
plt_add_apps: [:finch]
]
end

Expand Down

0 comments on commit 7d448d5

Please sign in to comment.