dialyze
dialyze copied to clipboard
Mix dialyzer task
Fix numerous deprecations on compile: ``` Compiling 1 file (.ex) warning: Atom.to_char_list/1 is deprecated. Use Atom.to_charlist/1 instead Found at 2 locations: lib/mix/tasks/dialyze.ex:292 lib/mix/tasks/dialyze.ex:337 warning: Enum.filter_map/3 is deprecated. Use Enum.filter/2 +...
Use `.formatter.exs` to format dialyze.
I'm getting a bunch of errors like `Callback info about the 'Elixir.Mix.Task' behaviour is not available`. Is there a flag to include my deps when building the ptl?
Is it possible to use `mix dialyze` with a custom PLT location?
When I try to use it, I get the following output: ``` plain $ mix dialyze Finding applications for analysis Finding suitable PLTs Looking up modules in dialyze_erlang-18.0_elixir-1.0.5_deps-dev.plt Looking up...
In my test suite I have a lot of examples of usage. If I could have dialyzer look at those then there would be many "real world" examples of usage...