Current section

Files

Jump to
rebar3_nova rebar.config
Raw

rebar.config

{erl_opts, [debug_info]}.
{project_plugins, [erlfmt, rebar3_ex_doc]}.
{hex, [{doc, #{provider => ex_doc}}]}.
{ex_doc, [
{proglang, erlang},
{main, <<"readme">>},
{extras, [<<"README.md">>, <<"LICENSE">>]},
{source_url, <<"https://github.com/novaframework/rebar3_nova">>}
]}.
{deps, [
nova,
fs
]}.
{xref_checks, [
undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions
]}.
{xref_ignores, [
providers,
rebar_api,
rebar_app_info,
rebar_prv_shell,
rebar_state,
{nova_router, process_routefile, 1}
]}.
{dialyzer, [
{plt_apps, all_deps},
{plt_extra_apps, [
nova,
routing_tree
]},
{warnings, [no_unknown]}
]}.