Last Updated: February 25, 2016
·
1.893K
· Licenser

Use xref on your code!

It's very helpful to run xref:

rebar xref skip_deps=true 

with every build/test it's very good at finding typos in function module names.
Also for those unused exports you know you want i.e. start_link/0 just put in:

-ignore_xref([start_link/0]).

I personally like to put it before tests in the makefile.