forked from emqx/esockd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
49 lines (41 loc) · 1.42 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
{minimum_otp_vsn, "21.0"}.
{erl_opts, [warn_unused_vars,
warn_shadow_vars,
warn_unused_import,
warn_obsolete_guard,
debug_info,
compressed %% for edge
]}.
{xref_checks, [undefined_function_calls, undefined_functions,
locals_not_used, deprecated_function_calls,
warnings_as_errors, deprecated_functions
]}.
{eunit_opts, [verbose, {report,{eunit_surefire,[{dir,"."}]}}]}.
{src_dirs, ["src"]}.
{extra_src_dirs, ["examples/client",
"examples/active_n",
"examples/async_recv",
"examples/client",
"examples/dtls",
"examples/dtls_psk",
"examples/gen_server",
"examples/plain",
"examples/proxy_protocol",
"examples/simple",
"examples/tls",
"examples/tcp_window",
"examples/udp"
]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{cover_export_enabled, true}.
{dialyzer, [{warnings, [unmatched_returns,
error_handling,
race_conditions]}]}.
{profiles,
[{test,
[{plugins, [{coveralls, {git, "https://github.com/emqx/coveralls-erl", {branch, "github"}}}]},
{deps, [{meck, "0.8.13"}]},
{erl_opts, [debug_info]}
]}
]}.