Current section
Files
Jump to
Current section
Files
rebar.config
{minimum_otp_vsn, "22.0"}.
{erl_opts, [
debug_info
]}.
{extra_src_dirs, [{"test", [{recursive, true}]}]}.
{deps, []}.
{shell, [{apps, [epmdlib]}]}.
{edoc_opts, [{dir, "docs"}, {preprocess, true}]}.
{project_plugins, [{rebar3_lint, "0.1.11"}, {rebar3_check_deps, "0.1.0"}]}.
{plugins, [
]}.
{provider_hooks, [
{pre, [
]},
{post, [
]}
]}.
%% Enable test coverage reports
{cover_enabled, true}.
{cover_export_enabled, true}.
%% xref configurations
{xref_checks,[undefined_function_calls,undefined_functions,
deprecated_function_calls, deprecated_functions]}.
{profiles, [
{test, [{deps, [
{meck, "0.9.0"}
]}
]}
]}.