-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
75 lines (63 loc) · 1.53 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
{minimum_otp_vsn, "25"}.
{erl_opts, [
debug_info,
report,
verbose,
warn_missing_spec_all,
warnings_as_errors
]}.
{project_plugins, [
{erlfmt, "1.5.0"},
{rebar3_ex_doc, "0.2.24"},
{rebar3_hank, "1.4.1"},
{rebar3_hex, "7.0.8"},
{rebar3_lint, "3.2.6"}
]}.
{deps, [{tls_certificate_check, "1.24.0"}]}.
{alias, [{ci, [fmt, hank, lint, xref, dialyzer, ct, cover, ex_doc]}]}.
{shell, [{apps, [rebar3_checkshell]}]}.
{erlfmt, [
write,
{files, [
"elvis.config",
"rebar.config",
"src/*.app.src",
"src/**/*.erl",
"test/**/*.erl"
]}
]}.
{profiles, [
{test, [
{cover_enabled, true},
{cover_excl_mods, [rebar3_checkshell]},
{cover_opts, [verbose]},
{deps, [{meck, "0.9.2"}]},
{erl_opts, [
debug_info,
report,
verbose,
nowarn_missing_spec_all,
warnings_as_errors
]},
{extra_src_dirs, [{"test", [{recursive, true}]}]},
{xref_extra_paths, ["test"]}
]}
]}.
{escript_incl_apps, [rebar]}.
{dialyzer, [
{warnings, [
error_handling,
underspecs,
unmatched_returns,
no_unknown
]}
]}.
{xref_checks, [deprecated_function_calls, exports_not_used, locals_not_used]}.
{ex_doc, [
{extras, ["README.md"]},
{main, "README.md"},
{api_reference, false},
{source_url, "https://github.com/paulo-ferraz-oliveira/rebar3_checkshell"},
{prefix_ref_vsn_with_v, false}
]}.
{hex, [{doc, #{provider => ex_doc}}]}.