generated from vkatsuba/rebar3_plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrebar.config
52 lines (39 loc) · 1.17 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
{erl_opts,
[warn_unused_import,
warn_export_vars,
warnings_as_errors,
verbose,
report,
debug_info,
{i, "src"}]}.
{deps, []}.
{minimum_otp_vsn, "25"}.
{profiles,
[{test, [{deps, [{meck, "~> 0.9.2"}]}, {dialyzer, [{plt_extra_apps, [common_test]}]}]}]}.
{project_plugins,
[{rebar3_hex, "~> 7.0.8"},
{rebar3_format, "~> 1.3.0"},
{rebar3_lint, "~> 3.2.6"},
{rebar3_hank, "~> 1.4.1"}]}.
{dialyzer, [{warnings, [no_return, unmatched_returns, error_handling, underspecs]}]}.
{xref_checks,
[deprecated_function_calls, exports_not_used, locals_not_used, undefined_function_calls]}.
{edoc_opts,
[{todo, true},
{title, "rebar3_typer"},
{overview, "priv/overview.edoc"},
{includes, ["src"]},
{preprocess, true},
{packages, true},
{subpackages, true},
{source_path, "src"},
{application, rebar3_typer},
{new, true},
report_missing_types]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{provider_hooks, [{pre, [{ct, dialyzer}]}]}.
{alias,
[{test, [compile, format, lint, hank, dialyzer, {ct, "--verbose"}, cover, edoc]}]}.
{format, [{files, ["src/**/*.app.src", "src/**/*.erl", "test/**/*.erl", "*.config"]}]}.
{hex, [{doc, #{provider => edoc}}]}.