-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathrebar.config
29 lines (24 loc) · 857 Bytes
/
rebar.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{erl_opts, [inline_list_funcs,
warn_deprecated_function,
warn_export_vars,
warn_obsolete_guard,
warn_shadow_vars,
warn_unused_function,
warn_unused_import,
warnings_as_errors,
debug_info]}.
{xref_checks, [fail_on_warning,
undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions]}.
{dialyzer, [{warnings, [error_handling,
race_conditions,
unmatched_returns,
unknown,
no_improper_lists]}]}.
{validate_app_modules, true}.
{profiles, [{test, [{erl_opts, [export_all, debug_info]}]}]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.