-
Notifications
You must be signed in to change notification settings - Fork 96
/
rebar.config
45 lines (43 loc) · 1.26 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
{deps, [
{gen_batch_server, "0.8.8"},
{aten, "0.6.0"},
{seshat, "0.6.0"}
]}.
{profiles,
[{test, [{deps, [proper,
meck,
elvis,
{looking_glass,
{git, "https://github.com/rabbitmq/looking_glass",
{branch, "main"}}},
{inet_tcp_proxy_dist,
{git, "https://github.com/rabbitmq/inet_tcp_proxy",
{branch, "master"}}}
]}]}
]
}.
{dist_node, [
{sname, 'ra'}
]}.
{project_plugins, [rebar3_hex,
{eqwalizer_rebar3,
{git_subdir,
"https://github.com/whatsapp/eqwalizer.git",
{branch, "main"},
"eqwalizer_rebar3"}}
]}.
{erl_opts, [debug_info,warn_export_vars,warn_shadow_vars,warn_obsolete_guard]}.
{dialyzer, [{warnings,
[error_handling,
unmatched_returns]},
{plt_extra_apps, [eunit]}]}.
{xref_extra_paths, ["test"]}.
{xref_checks,[undefined_function_calls,
undefined_functions,
locals_not_used,
% exports_not_used,
deprecated_function_calls,
deprecated_functions]}.
{hex, [
{doc, edoc}
]}.