Current section

Files

Jump to
rebar3_hank 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, [{katana_code, "~> 2.5.1"}]}.
{ex_doc, [
{source_url, ~"https://github.com/AdRoll/rebar3_hank"},
{extras, [~"README.md", ~"LICENSE"]},
{main, ~"readme"},
{prefix_ref_vsn_with_v, false}
]}.
{hex, [{doc, #{provider => ex_doc}}]}.
{project_plugins, [
{rebar3_hex, "~> 7.1.0"},
{erlfmt, "~> 1.8.0"},
{rebar3_lint, "~> 5.0.4"},
{rebar3_sheldon, "~> 0.4.3"},
{rebar3_ex_doc, "~> 0.3.0"},
rebar3_depup
]}.
{dialyzer, [
{warnings, [
no_return,
unmatched_returns,
error_handling,
missing_return,
extra_return,
no_unknown
]}
]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{erlfmt, [write, {files, ["src/**/*.app.src", "src/**/*.erl", "test/**/*.erl", "*.config"]}]}.
{spellcheck, [
{ignore_regex,
"(eunit|=>|~t|_|[a-z][A-Z]|[*]|~>|[.]/|[A-Za-z0-9]/\\d|[.].rl|[.]config|[?][A-Za-z]|[a-z][:/][a-z]|\\d[.]\\d|[#][a-z0-9]|<[a-z/]|[a-z][(]|[{][a-z])"},
{files, ["src/**/*.?rl", "src/*.app.src", "test/**/*.?rl"]},
{additional_dictionaries, ["nextroll.dict", "test.dict"]}
]}.
{alias, [
{test, [
compile, fmt, spellcheck, lint, dialyzer, {ct, "--verbose"}, {cover, "--verbose"}, ex_doc
]}
]}.