-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
41 lines (35 loc) · 1.04 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
{erl_opts, [warnings_as_errors]}.
{deps, [
{cowboy, {git, "[email protected]:ninenines/cowboy.git", {branch, "master"}}},
{ebus, "0.3.0", {pkg, erlbus}},
{njson, {git, "[email protected]:nomasystems/njson.git", {branch, "main"}}},
{nuid, {git, "[email protected]:nomasystems/nuid.git", {branch, "main"}}}
]}.
{project_plugins, [
{erlfmt, {git, "[email protected]:WhatsApp/erlfmt.git", {branch, "main"}}},
{gradualizer, {git, "[email protected]:josefs/Gradualizer.git", {branch, "master"}}}
]}.
{erlfmt, [write]}.
{alias, [
{check, [
{fmt, "--check"},
xref,
dialyzer,
gradualizer
]},
{test, [
{ct, "--spec test/conf/test.spec --cover --readable true"},
{cover, "-m 100"}
]}
]}.
{profiles, [
{test, [
{deps, [
{gun, {git, "[email protected]:ninenines/gun.git", {branch, "master"}}},
{nct_util, {git, "[email protected]:nomasystems/nct_util.git", {branch, "main"}}}
]}
]}
]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{xref_ignores, []}.