Current section
Files
Jump to
Current section
Files
rebar3_mutate
rebar.config
rebar.config
{erl_opts, [debug_info]}.
{deps, []}.
{project_plugins, [erlfmt, rebar3_hex, rebar3_ex_doc]}.
{erlfmt, [write]}.
{xref_checks, [
undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions
]}.
%% rebar3 APIs are provided by the host at runtime, not at compile time
{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_operators,
rebar3_mutate_ast,
rebar3_mutate_runner,
rebar3_mutate_report
]}
]}.
{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}
]}.