How can I disable elixir compiler warnings
00:53 22 Mar 2018

When I do

mix compile

I get messages like

warning: variable "test_val" is unused
lib/myapp/mymodule.ex:46

I'm just hacking on a side project and I don't care about these warnings for now. Is there a way to turn this off?

elixir elixir-mix