-
Notifications
You must be signed in to change notification settings - Fork 16
/
rebar.config
40 lines (28 loc) · 1.15 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
{erl_opts, [debug_info]}.
{deps, [{backoff, "~> 1.1.6"},
{pg_types, "~> 0.4.0"},
{opentelemetry_api, "~> 1.3.1"}]}.
{profiles, [{test, [{erl_opts, [nowarn_export_all]},
{deps, [jsone,
opentelemetry,
opentelemetry_api,
opentelemetry_exporter]}]}]}.
{shell, [{apps, [pgo]},
{config, "config/example.config"}]}.
{overrides, [{override, backoff, [{plugins, []}]}]}.
{project_plugins, [covertool]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{cover_export_enabled, true}.
{cover_export_enabled, true}.
{covertool, [{coverdata_files, ["ct.coverdata"]}]}.
{xref_checks,[undefined_function_calls, undefined_functions, locals_not_used,
deprecated_function_calls, deprecated_functions]}.
{xref_ignores, [{oc_trace, finish_span, 1},
{oc_trace, start_span, 3},
{ocp, current_span_ctx, 0},
{ocp, with_span_ctx, 1}]}.
{edoc_opts, [{preprocess, true},
{overview, "doc/overview.edoc"}]}.
{ct_opts, [{ct_hooks, [cth_surefire]}]}.
{dialyzer, [{warnings, [no_unknown]}]}.