Current section

Files

Jump to
cowmachine rebar.config
Raw

rebar.config

%%-*- mode: erlang -*-
{require_min_otp_vsn, "22.3"}.
{plugins, [rebar3_hex]}.
{deps, [
{zotonic_stdlib, "~> 1.6"},
{cowboy, "2.9.0"}
]}.
{profiles, [
{test, [
{xref_checks, [
undefined_function_calls,
locals_not_used,
deprecated_function_calls
]},
{xref_ignores, [
]}
]},
{edoc_private, [
{edoc_opts, [
{private, true}
]}
]},
{check, [
{dialyzer, [
{warnings, [
no_return
]}
]},
{erl_opts, [
debug_info
]}
]
}
]}.
{edoc_opts, [
{preprocess, true}, {stylesheet, "style.css"}
]}.