We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c613da commit 2b4b14fCopy full SHA for 2b4b14f
.dialyzer_ignore.exs
@@ -0,0 +1,4 @@
1
+[
2
+ {"lib/grax/rdf/loader.ex", :guard_fail},
3
+ {"lib/grax/rdf/preloader.ex", :guard_fail}
4
+]
mix.exs
@@ -94,7 +94,10 @@ defmodule Grax.MixProject do
94
95
defp dialyzer do
96
[
97
- plt_file: {:no_warn, "priv/plts/dialyzer.plt"}
+ plt_file: {:no_warn, "priv/plts/dialyzer.plt"},
98
+ ignore_warnings: ".dialyzer_ignore.exs",
99
+ # Error out when an ignore rule is no longer useful so we can remove it
100
+ list_unused_filters: true
101
]
102
end
103
0 commit comments