-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrebar.config
79 lines (70 loc) · 1.88 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{erl_opts, [
warnings_as_errors
]}.
{deps, [
{buoy, {git, "[email protected]:lpgauth/buoy.git", {branch, "master"}}},
{erf, {git, "[email protected]:nomasystems/erf.git", {tag, "0.1.1"}}},
{ndto, {git, "[email protected]:nomasystems/ndto.git", {tag, "0.1.0"}}},
{njson, {git, "[email protected]:nomasystems/njson.git", {branch, "main"}}},
{triq, {git, "[email protected]:nomasystems/triq.git", {branch, "master"}}}
]}.
{project_plugins, [
{erlfmt, {git, "[email protected]:WhatsApp/erlfmt.git", {branch, "main"}}},
{gradualizer, {git, "[email protected]:josefs/Gradualizer.git", {branch, "master"}}},
rebar3_ex_doc
]}.
{erlfmt, [write]}.
{shell, [
{apps, [restcheck]}
]}.
{alias, [
{check, [
{fmt, "--check"},
xref,
dialyzer,
gradualizer
]},
{test, [
{ct, "--spec test/conf/test.spec --cover --readable true"}
]},
{doc, [
{ex_doc, "-f html"}
]}
]}.
{profiles, [
{test, [
{deps, [
{elli, {git, "[email protected]:elli-lib/elli.git", {branch, "main"}}},
{meck, {git, "[email protected]:eproxus/meck.git", {branch, "master"}}},
{nct_util, {git, "[email protected]:nomasystems/nct_util.git", {branch, "main"}}}
]}
]}
]}.
{ex_doc, [
{extras, [
{"README.md", #{title => "Overview"}},
{"CONTRIBUTING.md", #{title => "Contributing"}},
{"LICENSE", #{title => "License"}}
]},
{main, "README.md"},
{source_url, "https://github.com/nomasystems/restcheck"},
{prefix_ref_vsn_with_v, false}
]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{xref_ignores, [
restcheck,
restcheck_client,
restcheck_pbt,
restcheck_schema,
restcheck_suite,
restcheck_triq
]}.
%% TODO: address this
{gradualizer_opts, [
{exclude, [
"src/restcheck.erl",
"src/restcheck_schema.erl",
"src/restcheck_triq.erl"
]}
]}.