forked from gen-smtp/gen_smtp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
68 lines (62 loc) · 982 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
%% -*- mode: erlang; -*-
{require_min_otp_vsn, "19"}.
{erl_opts,
[fail_on_warning,
debug_info,
warn_unused_vars,
warn_unused_import,
warn_exported_vars]}.
{xref_checks,
[undefined_function_calls,
undefined_functions,
locals_not_used,
%% exports_not_used,
deprecated_function_calls,
deprecated_functions
]}.
{project_plugins, [
rebar3_proper
]}.
{xref_ignores,
[
{smtp_rfc822_parse, return_error, 2}
]}.
{deps, [{ranch, ">= 1.7.0"},
{hut, "1.3.0"}]}.
{profiles,
[
{dialyzer,
[
{deps,
[
{eiconv, "1.0.0"}
]
},
{dialyzer,
[
{plt_extra_apps,
[
eiconv,
ssl,
hut
]
},
{warnings,
[error_handling,
unknown
]}
]}
]},
{ranch20,
[{deps, [{ranch, "2.0.0"}]}]},
{test,
[
{cover_enabled, true},
{cover_print_enabled, true},
{deps,
[
{eiconv, "1.0.0"},
{proper, "1.3.0"}
]}
]}
]}.