Current section

Files

Jump to
rebar3_depup rebar.config
Raw

rebar.config

{erl_opts,
[warn_unused_vars,
warn_export_all,
warn_shadow_vars,
warn_unused_import,
warn_unused_function,
warn_bif_clash,
warn_unused_record,
warn_deprecated_function,
warn_obsolete_guard,
strict_validation,
warn_export_vars,
warn_exported_vars,
warnings_as_errors,
debug_info]}.
{minimum_otp_vsn, "23"}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{deps, [{hex_core, "~> 0.8.4"}, {verl, "~> 1.1.1"}]}.
{profiles, [{test, [{deps, [{meck, "~> 0.9.2"}]}]}]}.
{dialyzer, [{warnings, [no_return, unmatched_returns, error_handling, underspecs]}]}.
{edoc_opts,
[{todo, true},
{title, "Rebar3 DepUp"},
{overview, "priv/overview.edoc"},
{packages, true},
{subpackages, true},
{source_path, "src"},
{application, rebar3_depup},
{new, true},
report_missing_types]}.
{format, [{files, ["*.config", "src/*", "test/*"]}]}.
{spellcheck,
[{ignore_regex, "(->|~>|--|==|\\d[.]\\d|//|[.][a-z]|[a-z]/\\d|<code>)"},
{files, ["src/*"]},
{additional_dictionaries, ["nextroll.dict"]}]}.
{alias,
[{test,
[compile, format, spellcheck, lint, hank, dialyzer, {ct, "--verbose"}, cover, edoc]}]}.
{project_plugins,
[{rebar3_hex, "~> 7.0.1"},
{rebar3_format, "~> 1.0.1"},
{rebar3_lint, "~> 1.0.2"},
{rebar3_hank, "~> 1.2.2"},
{rebar3_sheldon, "~> 0.4.2"}]}.