Current section
Files
Jump to
Current section
Files
rebar3_checkshell
rebar.config
rebar.config
{minimum_otp_vsn, "28"}.
{erl_opts, [
debug_info,
report,
verbose,
warn_missing_spec_all,
warnings_as_errors
]}.
{project_plugins, [
{erlfmt, "1.7.0"},
{rebar3_ex_doc, "0.2.30"},
{rebar3_hank, "1.4.1"},
{rebar3_hex, "7.0.11"},
{rebar3_lint, "4.1.1"}
]}.
{deps, [{tls_certificate_check, "1.28.0"}]}.
{alias, [{ci, [fmt, hank, lint, xref, dialyzer, ct, cover, ex_doc]}]}.
{shell, [{apps, [rebar3_checkshell]}]}.
{erlfmt, [
write,
{files, [
"elvis.config",
"rebar.config",
"src/*.app.src",
"src/**/*.erl",
"test/**/*.erl"
]}
]}.
{profiles, [
{test, [
{cover_enabled, true},
{cover_excl_mods, [rebar3_checkshell]},
{cover_opts, [verbose]},
{deps, [{meck, "1.0.0"}]},
{erl_opts, [
debug_info,
report,
verbose,
nowarn_missing_spec_all,
warnings_as_errors
]},
{extra_src_dirs, [{"test", [{recursive, true}]}]},
{xref_extra_paths, ["test"]}
]}
]}.
{escript_incl_apps, [rebar]}.
{dialyzer, [
{warnings, [
error_handling,
underspecs,
unmatched_returns,
no_unknown
]}
]}.
{xref_checks, [deprecated_function_calls, exports_not_used, locals_not_used]}.
{ex_doc, [
{extras, ["README.md"]},
{main, "README.md"},
{api_reference, false},
{source_url, "https://github.com/paulo-ferraz-oliveira/rebar3_checkshell"},
{prefix_ref_vsn_with_v, false}
]}.
{hex, [{doc, #{provider => ex_doc}}]}.