% -*- erlang -*-
{erl_opts, [debug_info]}.
{deps,
 [
  {poolboy, "~>1.5.0"},
  {ddb_client, "~>0.2.0"}
 ]}.

{profiles,
 [{lint,  [{plugins, [{rebar3_lint, {git, "https://github.com/project-fifo/rebar3_lint.git", {tag, "0.1.4"}}}]}]},
  {eqc,   [{erl_opts, [{d, 'TEST'}, debug_info, warnings_as_errors, {parse_transform, lager_transform}]},
           {deps, [meck]}, {plugins, [rebar3_eqc]}]}]}.

{xref_checks, [undefined_function_calls,
               undefined_functions,
               locals_not_used,
               deprecated_function_calls, deprecated_functions]}.

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