-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathrebar.config
48 lines (43 loc) · 1019 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
{minimum_otp_vsn, "22.2"}.
{erl_opts, [
debug_info,
{warn_format, 2},
warn_export_all,
warn_export_vars,
warn_obsolete_guard,
warn_unused_import
% DEBUG mode - use local boulder instance
% ,{d, 'DEBUG'}
% ,{d, 'TEST'}
]}.
{deps, [
{shotgun, "0.4.0"},
{jiffy , "1.0.1"},
{elli, "3.2.0"},
% eletsencrypt escript dependencies
{getopt , "1.0.1"},
{yamerl , "0.7.0"},
{erlang_color , "1.0.0"}
]}.
{overrides, [
{override, jiffy, [
{plugins, [pc]},
{provider_hooks, [{post, [
{compile, {pc, compile}},
{clean, {pc, clean}}
]}]}
]}
]}.
{dialyzer, [
% disable *no_match* and *no_unused* temporary
%{warnings, [error_handling, race_conditions]},
{warnings, [error_handling, race_conditions, no_match, no_unused, no_return]},
%{get_warnings, true}
{get_warnings, false}
]}.
{plugins, [rebar3_auto, rebar3_hex]}.
{profiles, [
{test, [
{erl_opts, [{d, 'TEST'}]}
]}
]}.