mirror of
https://github.com/erlef/setup-beam.git
synced 2026-07-23 07:06:07 +00:00
23 lines
404 B
Erlang
23 lines
404 B
Erlang
{erl_opts, [debug_info]}.
|
|
{deps, [{verl, "1.0.0"}]}.
|
|
{xref_checks, [
|
|
deprecated_function_calls,
|
|
exports_not_used,
|
|
locals_not_used,
|
|
undefined_function_calls
|
|
]}.
|
|
{dialyzer, [
|
|
{warnings, [
|
|
error_handling,
|
|
underspecs,
|
|
unknown,
|
|
unmatched_returns
|
|
]}
|
|
]}.
|
|
{profiles, [
|
|
{test, [
|
|
{cover_enabled, true},
|
|
{cover_opts, [verbose]}
|
|
]}
|
|
]}.
|