-
Notifications
You must be signed in to change notification settings - Fork 2
/
rebar.config
69 lines (61 loc) · 1.16 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{cover_enabled, true}.
{erl_opts,
[%{i, "src"},
%bin_opt_info,
debug_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, "22"}.
{dialyzer,
[{plt_include_all_deps, true},
{warnings,
[unmatched_returns,
error_handling,
underspecs
]}
]}.
{xref_checks,
[undefined_function_calls,
undefined_functions,
locals_not_used,
exports_not_used,
deprecated_function_calls,
deprecated_functions
]}.
{project_plugins,
[{rebar3_hex, "6.10.3"}
]}.
{profiles,
[{development,
[{erl_opts,
[nowarn_missing_spec,
nowarnings_as_errors]}
]},
{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"}
]}.