{erl_opts, [debug_info, warn_unused, warn_shadow_vars]}.
{deps, [
    {zotonic_stdlib, "1.2.3"}
]}.


{profiles, [
    {test, [
        {deps, [
            {proper, "1.2.0"}
        ]},

        {xref_checks, [
            undefined_function_calls,
            locals_not_used,
            deprecated_function_calls
        ]},

        {xref_ignores, [
        ]},

        {dialyzer, [
          {warnings, [
              no_return
          ]}
        ]}
    ]}
]}.
