Current section

Files

Jump to
rebar3_depup rebar.config
Raw

rebar.config

{erl_opts, [warn_unused_import, warn_export_vars, warnings_as_errors, verbose, report, debug_info]}.
{minimum_otp_vsn, "27"}.
{deps, [{hex_core, "~> 0.19.0"}, {verl, "~> 1.1.1"}]}.
{profiles, [
{test, [
{deps, [{meck, "~> 1.2.0"}]},
{cover_enabled, true},
{cover_opts, [verbose]},
{extra_src_dirs, [{"test", [{recursive, true}]}]},
{xref_extra_paths, ["test"]}
]}
]}.
{dialyzer, [
{warnings, [
underspecs,
unmatched_returns,
error_handling,
missing_return,
extra_return,
no_unknown
]},
{plt_extra_apps, [common_test]}
]}.
{xref_checks, [deprecated_function_calls, deprecated_functions]}.
{ex_doc, [
{extras, ["README.md"]},
{main, "README.md"},
{api_reference, false},
{source_url, "https://github.com/AdRoll/rebar3_depup"},
{prefix_ref_vsn_with_v, false}
]}.
{hex, [{doc, #{provider => ex_doc}}]}.
{erlfmt, [write, {files, ["src/**/*.{hrl,erl,app.src}", "test/*.erl", "*.config"]}]}.
{spellcheck, [
{ignore_regex, "(->|~>|--|==|\\d[.]\\d|//|[.][a-z]|[a-z]/\\d|<code>)"},
{files, ["src/*"]},
{additional_dictionaries, ["nextroll.dict"]}
]}.
{alias, [
{test, [
fmt, spellcheck, lint, hank, xref, dialyzer, {ct, "--verbose"}, {cover, "--verbose"}, ex_doc
]}
]}.
{project_plugins, [
{rebar3_hex, "~> 7.2.0"},
{erlfmt, "~> 1.8.0"},
{rebar3_lint, "~> 5.0.4"},
{rebar3_hank, "~> 1.6.1"},
{rebar3_sheldon, "~> 0.4.3"},
{rebar3_ex_doc, "~> 0.3.0"}
]}.