-
Notifications
You must be signed in to change notification settings - Fork 9
/
rebar.config
57 lines (45 loc) · 1.43 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
{erl_opts,
[warn_unused_import, warn_export_vars, warnings_as_errors, verbose, report, debug_info]}.
{minimum_otp_vsn, "21"}.
{deps, [{katana_code, "~> 2.1.0"}]}.
{ex_doc,
[{source_url, <<"https://github.com/AdRoll/rebar3_hank">>},
{extras, [<<"README.md">>, <<"LICENSE">>]},
{main, <<"readme">>}]}.
{hex, [{doc, #{provider => ex_doc}}]}.
{project_plugins,
[{rebar3_hex, "~> 7.0.8"},
{rebar3_format, "~> 1.3.0"},
{rebar3_lint, "~> 3.2.5"},
{rebar3_sheldon, "~> 0.4.3"},
{rebar3_ex_doc, "~> 0.2.23"}]}.
{dialyzer,
[{warnings,
[no_return,
unmatched_returns,
error_handling,
missing_return,
extra_return,
no_unknown]}]}.
{edoc_opts,
[{todo, true},
{title, "Hank"},
{overview, "priv/overview.edoc"},
{packages, true},
{subpackages, true},
{source_path, "src"},
{application, rebar3_hank},
{new, true},
{report_missing_types, true}]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{format,
[{files,
["priv/**/*.?rl", "src/**/*.app.src", "src/**/*.erl", "test/*.erl", "*.config"]}]}.
{spellcheck,
[{ignore_regex,
"(eunit|=>|~t|_|[a-z][A-Z]|[*]|~>|[.]/|[A-Za-z0-9]/\\d|[.].rl|[.]config|[?][A-Za-z]|[a-z][:/][a-z]|\\d[.]\\d|[#][a-z0-9]|<[a-z/]|[a-z][(]|[{][a-z])"},
{files, ["src/**/*.?rl", "src/*.app.src", "test/**/*.?rl"]},
{additional_dictionaries, ["nextroll.dict", "test.dict"]}]}.
{alias,
[{test, [compile, format, spellcheck, lint, dialyzer, {ct, "--verbose"}, cover, edoc]}]}.