rebar.config

{cover_enabled, true}.
{erl_opts, [debug_info, warnings_as_errors]}.
{edoc_opts, [{dir, "doc"}]}.
{eunit_opts, [{report,{eunit_surefire,[{dir,"."}]}}]}.
{deps,
 [
  {mmath, "~>0.2.14"},
  {jsxd, "~>0.2.4"},
  {snappyer, "~>1.2.0"}
 ]}.

{profiles,
 [{eqc,  [{erl_opts, [{d, 'TEST'}]}, {plugins, [rebar_eqc]}]},
  {lint, [{plugins, [rebar3_lint]}]}
 ]}.

{dialyzer, [{warnings, [underspecs, overspecs]}]}.