forked from jimm/erlang-midilib
-
Notifications
You must be signed in to change notification settings - Fork 2
/
rebar.config
49 lines (44 loc) · 981 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
{erl_opts, [debug_info]}.
{deps, [{uuid, "~> 2.0", {pkg, uuid_erl}}]}.
{xref_checks, [
undefined_function_calls, undefined_functions, locals_not_used,
deprecated_function_calls, deprecated_functions
]}.
{dialyzer, [
{warnings, [unknown]}
]}.
{profiles, [
{test, [
{deps, [
{proper, {git, "https://github.com/proper-testing/proper", {tag, "v1.3"}}}
]},
{plugins, [
{rebar3_proper, {git, "https://github.com/ferd/rebar3_proper", {tag, "0.12.1"}}}
]},
{eunit_opts, [verbose]}
]},
{dev, [
{deps, [lfe]},
{plugins, [rebar3_lfe]}
]},
{maintainer, [
{plugins, [rebar3_hex]}
]}
]}.
{alias, [
{coverage, [
{proper, "-c"},
{cover, "-v --min_coverage=0"}
]},
{check, [
compile,
xref,
dialyzer,
eunit,
coverage
]},
{publish, [
compile,
{hex, "publish package"}
]}
]}.