-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrebar.config
42 lines (38 loc) · 1.11 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
%% -*- erlang -*-
{erl_opts,
[debug_info,
warnings_as_errors,
warn_missing_spec,
{parse_transform, lager_transform}
]}.
{deps,
[
{amqp_client, "~>3.5.6"},
{backoff, "~>1.1.3"},
{jsone, "~>1.4.0"},
{poolboy, "1.5.1"},
{lager, "~>3.2.0"},
{folsom, "~>0.8.3"}
]}.
{profiles,
[{prod, [{relx, [{dev_mode, false},
{include_erts, true}]}]},
{lint, [{plugins, [{rebar3_lint, {git, "https://github.com/project-fifo/rebar3_lint.git", {tag, "0.1.5"}}}]}]},
{eqc, [{deps, [meck]}, {plugins, [rebar3_eqc]}, {erl_opts, [{d, 'TEST'}]}]},
{docs,
[{deps, [
{edown,
{git, "https://github.com/uwiger/edown.git",
{tag, "0.8"}}}
]},
{edoc_opts, [{doclet, edown_doclet},
{packages, false},
{subpackages, true},
{top_level_readme,
{"./README.md", "http://github.com/dataloop/erl-vent"}}]}
]}
]}.
{xref_checks, [undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls, deprecated_functions]}.