-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
56 lines (40 loc) · 1.02 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
%%-*-Erlang-*-
{erl_opts, [debug_info, warnings_as_errors]}.
{deps, [%%{enats_msg, "0.9.0"}
{enats_msg, {git, "https://github.com/travelping/enats_msg.git", {branch, "main"}}}
]}.
{minimum_otp_vsn, "27.0"}.
%% == Plugins ==
{plugins, [rebar3_fmt, rebar3_hex, rebar3_ex_doc]}.
%% == Dialyzer ==
{dialyzer,
[{warnings, [
unmatched_returns,
no_unknown,
underspecs,
no_extra_return
]},
{plt_apps, all_deps}
]}.
%% == Xref ==
{xref_checks,[undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions]}.
%% == Common Test ==
{ct_opts, [{ct_hooks, [cth_surefire]}]}.
%% == Dev shell config ==
{shell,
[{apps, [enats]}
]}.
%% == ExDoc ==
{ex_doc, [
{extras, ["README.md", "LICENSE.md"]},
{main, "README.md"},
{source_url, "https://github.com/travelping/enats"}
]}.
%% == Hex ==
{hex, [
{doc, #{provider => ex_doc}}
]}.