-
Notifications
You must be signed in to change notification settings - Fork 2
/
rebar.config
63 lines (52 loc) · 1.05 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
{erl_opts, [
debug_info,
warnings_as_errors,
warn_export_vars,
warn_unused_import,
warn_missing_spec_all
]}.
{deps, [
{jsx, "3.0.0"},
{getopt, "1.0.1"}
]}.
{plugins, [
{rebar3_lint, "1.0.2"}
]}.
{project_plugins, [
erlfmt
]}.
{minimum_otp_vsn, "23.0"}.
{escript_emu_args, "%%! -connect_all false\n"}.
{escript_main_app, els_dap}.
{escript_name, els_dap}.
{profiles, [
{test, [
{erl_opts, [
nowarn_export_all,
nowarn_missing_spec_all
]},
{deps, [
{meck, "0.9.0"}
]}
]}
]}.
{cover_enabled, true}.
{cover_export_enabled, true}.
{dialyzer, [
{warnings, [unknown]},
{plt_apps, all_deps},
{plt_extra_apps, [debugger]}
]}.
{edoc_opts, [{preprocess, true}]}.
{xref_checks, [
undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions
]}.
{xref_ignores, []}.
{erlfmt, [
write,
{files, ["{src,include,test}/*.{erl,hrl,app.src}", "rebar.config", "elvis.config"]}
]}.