forked from eproxus/meck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
46 lines (41 loc) · 966 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{minimum_otp_vsn, "25.0"}.
{project_plugins, [rebar3_ex_doc]}.
{profiles, [
{test, [
{deps, [unite]},
{eunit_opts, [no_tty, {report, {unite_compact, []}}]},
{erl_opts, [debug_info]},
{cover_enabled, true},
{cover_opts, [verbose]}
]},
{prod, [
{erl_opts, [
debug_info,
warnings_as_errors,
warn_export_all,
warn_export_vars,
warn_shadow_vars,
warn_obsolete_guard,
warn_unused_import
]}
]}
]}.
{xref_checks, [
locals_not_used,
undefined_function_calls,
deprecated_function_calls
]}.
{dialyzer, [
{warnings, [
unknown,
unmatched_returns,
error_handling
]}
]}.
{hex, [{doc, ex_doc}]}.
{ex_doc, [
{source_url, <<"https://github.com/eproxus/meck">>},
{extras, [<<"README.md">>, <<"LICENSE">>]},
{main, <<"readme">>},
{prefix_ref_vsn_with_v, false}
]}.