-
Notifications
You must be signed in to change notification settings - Fork 49
/
rebar.config
47 lines (37 loc) · 1.17 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
{minimum_otp_vsn, "18"}.
{erl_opts, [
debug_info,
{platform_define, "^2[3-9]", 'POST_OTP_22'},
{platform_define, "^20", 'POST_OTP_19'},
{platform_define, "^19", 'POST_OTP_18'},
{platform_define, "^[2-9]", 'POST_OTP_18'}
]}.
{project_plugins, [{covertool, "2.0.6"}, {rebar3_ex_doc, "0.2.23"}, {rebar3_hank, "1.4.0"}]}.
{deps, [{hex_core, "0.10.3"}, {verl, "1.1.1"}]}.
{profiles, [
{test, [
{extra_src_dirs, ["test/support"]},
{deps, [{erlware_commons, "1.7.0"}, {elli, "3.3.0"},
{jsone, "1.8.1"}, {meck, "0.9.2"}]},
{erl_opts, [nowarn_export_all]}
]}
]}.
{dialyzer, [
{warnings, [
error_handling,
no_unknown
]},
{plt_extra_apps, [hex_core, verl]}
]}.
{hank,
[{ignore,
[{"test/**/*.erl", unnecessary_function_arguments}]}]}.
{xref_checks,[undefined_function_calls,undefined_functions,locals_not_used,
deprecated_function_calls,deprecated_functions]}.
{alias, [{test, [{ct, "--cover"}, {cover, "-v"}]}]}.
{hex, [{doc, ex_doc}]}.
{ex_doc, [
{source_url, <<"https://github.com/erlef/rebar3_hex">>},
{extras, [<<"README.md">>, <<"LICENSE">>]},
{main, <<"readme">>}
]}.