Current section
Files
Jump to
Current section
Files
rebar.config
{cover_enabled, true}.
{erl_opts,
[%{i, "src"},
%bin_opt_info,
warn_export_all,
warn_export_vars,
warn_missing_spec,
warn_obsolete_guards,
warn_shadow_vars,
warn_unused_import,
warnings_as_errors
]}.
{minimum_otp_vsn, "19"}.
{dialyzer,
[{plt_include_all_deps, true},
{warnings,
[unmatched_returns,
error_handling,
race_conditions,
underspecs
]}
]}.
{xref_checks,
[undefined_function_calls,
undefined_functions,
locals_not_used,
exports_not_used,
deprecated_function_calls,
deprecated_functions
]}.
{profiles,
[{development,
[{erl_opts,
[nowarn_missing_spec,
nowarnings_as_errors]}
]},
{publishing,
[{plugins,
[{rebar3_hex, "6.8.0"}
]}
]},
{test,
[{erl_opts,
[debug_info,
nowarn_export_all,
nowarn_missing_spec,
nowarnings_as_errors
]},
{ct_opts,
[{sys_config, ["test/etc/sys.config"]}
]},
{relx,
[{release, {test_release, "0.0.0"}, [aequitas]},
{dev_mode, true},
{include_erts, false},
{extended_start_script, true},
{sys_config, "test/etc/sys.config"}
]}
]}
]}.
{edoc_opts,
[{stylesheet_file, "doc/custom_stylesheet.css"}
]}.