-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrebar.config
More file actions
59 lines (52 loc) · 1.41 KB
/
rebar.config
File metadata and controls
59 lines (52 loc) · 1.41 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
{erl_opts, [debug_info]}.
{deps, [
{brod, "4.3.2"},
{prometheus, "4.11.0"},
{recon, "2.5.6"},
{thrift, {git, "https://github.com/valitydev/thrift_erlang.git", {tag, "v1.0.0"}}},
{mg_proto, {git, "https://github.com/valitydev/machinegun-proto.git", {branch, "master"}}},
{epg_connector, {git, "https://github.com/valitydev/epg_connector.git", {tag, "v0.0.5"}}},
{epg_migrator, {git, "https://github.com/valitydev/epg_migrator.git", {branch, "main"}}},
{opentelemetry_api, "1.4.0"}
]}.
{xref_checks, [
% mandatory
undefined_function_calls,
undefined_functions,
deprecated_functions_calls,
deprecated_functions
]}.
{dialyzer, [
{warnings, [
% mandatory
unmatched_returns,
error_handling,
unknown
]},
{plt_apps, all_deps}
]}.
{shell, [
{config, "config/sys.config"},
{apps, [brod, progressor]}
]}.
{ct_opts, [
{ct_hooks, [prg_ct_hook]}
]}.
{profiles, [
{test, [
{deps, [
{meck, "0.9.2"},
{opentelemetry, "1.5.0"},
{opentelemetry_exporter, "1.8.0"}
]},
{dialyzer, [{plt_extra_apps, [eunit, common_test, runtime_tools, meck]}]}
]}
]}.
{project_plugins, [
{erlfmt, "1.5.0"},
{rebar3_lint, "3.2.6"}
]}.
{erlfmt, [
{print_width, 120},
{files, ["{src,include,test}/*.{hrl,erl}", "src/**/*.erl", "rebar.config", "elvis.config", "config/sys.config"]}
]}.