Current section

Files

Jump to
uef rebar.config
Raw

rebar.config

{base_dir, "_build"}.
{erl_opts, [debug_info, warn_missing_spec_all]}.
{deps, []}.
{minimum_otp_vsn, "19.0"}.
{dialyzer, [
{get_warnings, false}, % DON'T set it to 'true'! This leads to a high load while building PLT
{warnings, [
error_handling, race_conditions, underspecs, unmatched_returns, unknown
]}
]}.
{xref_warnings,true}.
{xref_checks, [
undefined_function_calls, undefined_functions, locals_not_used,
deprecated_function_calls, deprecated_functions
]}.
{project_plugins, [covertool]}.
{cover_enabled, true}.
{cover_export_enabled, true}.
{cover_opts, [verbose]}.
{covertool, [{coverdata_files, ["eunit.coverdata"]}]}.
{profiles, [
{test, [
{dir, "test"},
{erl_opts, [nowarn_missing_spec_all]}
]}
]}.