generated from vkatsuba/rebar3_plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrebar.config
51 lines (39 loc) · 1.1 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
%% vim:ft=erlang:
{erl_opts,
[debug_info,
warn_export_vars,
warn_missing_spec_all,
warn_unused_import,
warnings_as_errors,
{i, "src"}]}.
{deps, []}.
{minimum_otp_vsn, "23"}.
{project_plugins, [rebar3_hex, rebar3_format, rebar3_lint, rebar3_edoc_extensions]}.
{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_edoc_extensions"},
{overview, "priv/overview.edoc"},
{includes, ["src"]},
{preprocess, true},
{packages, true},
{subpackages, true},
{source_path, "src"},
{application, rebar3_edoc_extensions},
{new, true},
report_missing_types]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{alias, [{test, [compile, dialyzer, format, lint, {ct, "--verbose"}, cover, edoc]}]}.
{format,
[{ignore,
["test/test_app/src/*.erl",
"test/test_app/*.erl",
"test/*.erl",
"src/*prv.erl",
"src/*wrapper.erl",
"src/*export.erl"]},
{files, ["*.config", "src/*"]}]}.
{hex, [{doc, edoc}]}.