-
Notifications
You must be signed in to change notification settings - Fork 3
/
rebar.config
53 lines (42 loc) · 1.32 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
{erl_opts,
[warn_unused_import, warn_export_vars, warnings_as_errors, verbose, report, debug_info]}.
{minimum_otp_vsn, "24"}.
{deps, [{hex_core, "~> 0.10.3"}, {verl, "~> 1.1.1"}]}.
{profiles,
[{test,
[{deps, [{meck, "~> 0.9.2"}]},
{cover_enabled, true},
{cover_opts, [verbose]},
{extra_src_dirs, [{"test", [{recursive, true}]}]},
{xref_extra_paths, ["test"]}]}]}.
{dialyzer,
[{warnings,
[underspecs,
unmatched_returns,
error_handling,
missing_return,
extra_return,
no_unknown]},
{plt_extra_apps, [common_test]}]}.
{xref_checks, [deprecated_function_calls, deprecated_functions]}.
{ex_doc,
[{extras, ["README.md"]},
{main, "README.md"},
{api_reference, false},
{source_url, "https://github.com/AdRoll/rebar3_depup"},
{prefix_ref_vsn_with_v, false}]}.
{hex, [{doc, ex_doc}]}.
{format, [{files, ["*.config", "src/*", "test/*"]}]}.
{spellcheck,
[{ignore_regex, "(->|~>|--|==|\\d[.]\\d|//|[.][a-z]|[a-z]/\\d|<code>)"},
{files, ["src/*"]},
{additional_dictionaries, ["nextroll.dict"]}]}.
{alias,
[{test, [compile, format, spellcheck, lint, hank, xref, dialyzer, ct, cover, ex_doc]}]}.
{project_plugins,
[{rebar3_hex, "~> 7.0.8"},
{rebar3_format, "~> 1.3.0"},
{rebar3_lint, "~> 3.2.5"},
{rebar3_hank, "~> 1.4.0"},
{rebar3_sheldon, "~> 0.4.3"},
{rebar3_ex_doc, "~> 0.2.23"}]}.