This repository has been archived by the owner on May 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
rebar.config
56 lines (48 loc) · 1.85 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
{deps, [ {brod, "3.8.0"}
, {yamerl, "0.4.0"}
, {graphiter, "1.0.5"}
, {jsone, "1.4.6"}
, {cowboy, "1.1.2"}
]}.
{edoc_opts, [{preprocess, true}]}.
{profiles, [ {test, [{deps, [meck]}]}
, {dev, [{relx, [ {dev_mode, true}
, {include_erts, false}]}]}
, {prod, [{relx, [ {dev_mode, false}
, {include_erts, true}]}]}]}.
{erl_opts, [ error
, warn_unused_vars
, warn_shadow_vars
, warn_unused_import
, warn_obsolete_guard
, debug_info
]}.
{ct_use_short_names, true}.
{cover_enabled, true}.
{cover_export_enabled, true}.
{cover_opts, [verbose]}.
{eunit_opts, [verbose]}.
{relx, [ {release, {brucke, "version is taken from VSN file"},
[sasl, brucke]}
, {extended_start_script, true}
, {sys_config, "rel/sys.config"}
, {vm_args, "rel/vm.args"}
]
}.
{xref_checks, [undefined_function_calls, undefined_functions,
locals_not_used, deprecated_function_calls,
deprecated_functions]}.
{xref_ignores, [ {brucke_filter, behaviour_info, 1}
, {brucke_filter, filter, 6}
, {brucke_filter, init, 3}
, {brucke_http_healthcheck_handler, content_types_provided, 2}
, {brucke_http_healthcheck_handler, handle_request, 2}
, {brucke_http_healthcheck_handler, init, 2}
, {brucke_http_healthcheck_handler, init, 3}
, {brucke_http_ping_handler, content_types_provided, 2}
, {brucke_http_ping_handler, handle_request, 2}
, {brucke_http_ping_handler, init, 2}
, {brucke_http_ping_handler, init, 3}
, {brucke_lib, get_producer_config, 1}
, {brucke_member, start_link, 1}
]}.