Skip to content

Commit

Permalink
Update ignorable Dialyxir warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
devinus committed Jun 25, 2021
1 parent 7d89863 commit fb2d21d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .dialyzer_ignore.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[
{"lib/poison/encoder.ex", :unknown_function, 0},
{"lib/poison/decoder.ex", :unknown_function, 0},
{"lib/poison/parser.ex", :improper_list_constr}
]
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ defmodule Poison.Mixfile do
deps: deps(),
docs: docs(),
package: package(),
xref: [exclude: [:xmerl, :eex, Decimal]],
xref: [exclude: [Decimal]],
dialyzer: [
ignore_warnings: "dialyzer.ignore-warnings",
ignore_warnings: ".dialyzer_ignore.exs",
plt_add_apps: [:decimal],
flags: [
:error_handling,
Expand Down

0 comments on commit fb2d21d

Please sign in to comment.