forked from martinsumner/leveled
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrebar.config
More file actions
80 lines (72 loc) · 2.06 KB
/
rebar.config
File metadata and controls
80 lines (72 loc) · 2.06 KB
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
80
{minimum_otp_vsn, "22.3"}.
{xref_checks, [
undefined_function_calls,
undefined_functions,
deprecated_function_calls,
deprecated_functions
]}.
{cover_excl_mods, [
leveled_filterlexer,
leveled_filterparser,
leveled_evallexer,
leveled_evalparser,
leveled_setoplexer,
leveled_setopparser,
testutil,
appdefined_SUITE,
basic_SUITE,
iterator_SUITE,
perf_SUITE,
recovery_SUITE,
riak_SUITE,
tictac_SUITE
]}.
{eunit_opts, [verbose]}.
{project_plugins, [
{eqwalizer_rebar3,
{git_subdir, "https://github.com/OpenRiak/eqwalizer.git",
{branch, "openriak-3.4"}, "eqwalizer_rebar3"}},
{erlfmt, {git, "https://github.com/OpenRiak/erlfmt.git", {branch, "main"}}}
]}.
{erlfmt, [
write,
{print_width, 80},
{files, [
"{src,include}/*.{hrl,erl,app.src}",
"test/end_to_end/*.erl",
"rebar.config"
]},
{exclude_files, [
"src/erlfmt_parse.erl", "src/*lexer.erl", "src/*parser.erl"
]}
]}.
{profiles, [
{eqc, [
{deps, [
{meck,
{git, "https://github.com/OpenRiak/meck.git",
{branch, "openriak-3.4"}}},
fqc
]},
{erl_opts, [debug_info, {d, 'EQC'}]},
{extra_src_dirs, ["test/property", "test/end_to_end"]},
{shell, [{apps, [lz4]}]},
{plugins, [rebar_eqc]}
]},
{test, [{extra_src_dirs, ["test/end_to_end", "test/property"]}]},
{perf_full, [{erl_opts, [{d, performance, riak_fullperf}]}]},
{perf_mini, [{erl_opts, [{d, performance, riak_miniperf}]}]},
{perf_prof, [{erl_opts, [{d, performance, riak_profileperf}]}]}
]}.
{deps, [
{lz4, ".*",
{git, "https://github.com/OpenRiak/erlang-lz4",
{branch, "openriak-3.4"}}},
{zstd, ".*",
{git, "https://github.com/OpenRiak/zstd-erlang",
{branch, "openriak-3.4"}}},
{eqwalizer_support,
{git_subdir, "https://github.com/OpenRiak/eqwalizer.git",
{branch, "openriak-3.4"}, "eqwalizer_support"}}
]}.
{ct_opts, [{dir, ["test/end_to_end"]}]}.