-
Notifications
You must be signed in to change notification settings - Fork 14
/
rebar.config
54 lines (44 loc) · 1010 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
49
50
51
52
53
54
{require_min_otp_vsn, "22"}.
{erl_opts, [
debug_info,
warn_unused_vars,
warn_shadow_vars,
warn_unused_import
]
}.
{deps, [
{cowlib, "~> 2.11"},
{qdate_localtime, "~> 1.2"},
{tls_certificate_check, "~> 1.11"}
]}.
{project_plugins, [rebar3_ex_doc]}.
{hex, [{doc, ex_doc}]}.
{ex_doc, [
{source_url, <<"https://github.com/zotonic/z_stdlib">>},
{extras, [<<"README.md">>, <<"LICENSE">>]},
{main, <<"readme">>}
]}.
{profiles, [
{test, [
{deps, [
{cowlib, "~> 2.11"},
{proper, "1.3.0"},
{eiconv, "1.0.0"},
{erlang_localtime, "1.0.0"}
]},
{xref_checks, [
undefined_function_calls,
locals_not_used,
deprecated_function_calls
]},
{xref_ignores, [
{z_css_parser, return_error, 2},
{z_trans, lookup_fallback, 2}
]},
{dialyzer, [
{warnings, [
no_unused
]}
]}
]}
]}.