Current section

Files

Jump to
rebar3_mutate rebar.config
Raw

rebar.config

{erl_opts, [debug_info]}.
{deps, []}.
{project_plugins, [
covertool,
{rebar3_sbom,
{git, "https://github.com/Taure/rebar3_sbom.git", {branch, "feat/include-otp-components"}}},
rebar3_audit,
erlfmt,
rebar3_hex,
rebar3_ex_doc
]}.
{erlfmt, [write]}.
{xref_checks, [
undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions
]}.
{xref_ignores, [
{providers, create, 1},
{rebar_api, info, 2},
{rebar_api, warn, 2},
{rebar_api, error, 2},
{rebar_app_info, dir, 1},
{rebar_app_info, out_dir, 1},
{rebar_app_info, name, 1},
{rebar_dir, root_dir, 1},
{rebar_state, add_provider, 2},
{rebar_state, command_parsed_args, 1},
{rebar_state, project_apps, 1},
{eunit, test, 2}
]}.
{dialyzer, [
{warnings, [error_handling, unmatched_returns]},
{exclude_mods, [
rebar3_mutate,
rebar3_mutate_prv,
rebar3_mutate_report,
rebar3_mutate_runner
]}
]}.
{hex, [{doc, #{provider => ex_doc}}]}.
{ex_doc, [
{source_url, <<"https://github.com/Taure/rebar3_mutate">>},
{extras, [<<"README.md">>, <<"LICENSE">>]},
{main, <<"README.md">>},
{homepage_url, <<"https://github.com/Taure/rebar3_mutate">>},
{api_reference, true}
]}.
{cover_enabled, true}.