-
Notifications
You must be signed in to change notification settings - Fork 5
/
rebar.config
57 lines (52 loc) · 1019 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
55
56
57
{dialyzer, [
{warnings, [
unknown,
unmatched_returns,
error_handling,
extra_return,
missing_return,
underspecs
% overspecs, specdiffs
]}
]}.
{alias, [
{format, [
{do, "default as format fmt -w"}
]},
{format_check, [
{do, "default as format fmt -c"}
]},
{run_tests, [
{ct, "--sname=ct1"}
]},
{cover_tests, [
{ct, "--sname=ct1 --cover"}
]},
{all, [
format,
run_tests,
xref,
dialyzer
]}
]}.
{profiles, [
{format, [
{plugins, [erlfmt]}
]},
{test, [
{deps, [
{logger_debug_h, "0.2.0"},
{meck, "0.9.2"}
]},
{plugins, [
{rebar3_codecov, "0.6.0"}
]}
]}
]}.
{plugins, [rebar3_ex_doc, rebar3_hex]}.
{ex_doc, [
{source_url, <<"https://github.com/esl/cets">>},
{extras, [<<"README.md">>, <<"LICENSE">>]},
{main, <<"readme">>}
]}.
{hex, [{doc, ex_doc}]}.