Current section
Files
Jump to
Current section
Files
rebar.config
{erl_opts, [debug_info, warnings_as_errors]}.
{deps, []}.
{project_plugins, [rebar3_ex_doc, rebar3_hex, rebar3_proper]}.
{hex, [{doc, ex_doc}]}.
{ex_doc, [
{source_url, <<"https://github.com/benoitc/erlang_h1">>},
{extras, [<<"README.md">>, <<"CHANGELOG.md">>,
<<"docs/features.md">>, <<"docs/ranch.md">>]},
{main, <<"README.md">>}
]}.
{profiles, [
{test, [
{deps, [{proper, "1.4.0"}, {ranch, "2.1.0"}]},
{erl_opts, [debug_info, {d, 'PROPER'}]}
]}
]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{dialyzer, [
{warnings, [
error_handling,
unmatched_returns
]}
]}.
{xref_checks, [
undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions
]}.