rebar.config

%% -*- erlang -*-
{cover_enabled, true}.
{erl_opts, [debug_info, warnings_as_errors, {parse_transform, lager_transform}]}.
{edoc_opts, [{dir, "doc"}]}.
{eunit_opts, [{report,{eunit_surefire,[{dir,"."}]}}]}.
{deps,
 [
  {lager, "~>2.1.1"},
  {riak_dt, "~>2.1.1"},
  {jsx, "~>1.4.5"},
  {fifo_utils, "~>0.1.22"},
  jsxd,
  libsnarlmatch
 ]}.

{profiles,
 [
  {lint,  [{plugins, [{rebar3_lint, {git, "https://github.com/project-fifo/rebar3_lint.git", {tag, "0.1.4"}}}]}]},
  {eqc,
   [{erl_opts, [{d, 'EQC'}]},
    {deps, [fqc]},
    {plugins, [rebar3_eqc]}]}]}.

{xref_checks, [
               %% since vlock isn't here ...
               %% undefined_function_calls
               %% undefined_functions,
               locals_not_used,
               deprecated_function_calls, deprecated_functions]}.