-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrebar.config
43 lines (32 loc) · 967 Bytes
/
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
{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_hank, 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, "{{ repo-name }}"},
{overview, "priv/overview.edoc"},
{includes, ["src"]},
{preprocess, true},
{packages, true},
{subpackages, true},
{source_path, "src"},
{application, {{ repo-name }}},
{new, true},
report_missing_types]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{alias,
[{test, [compile, format, lint, hank, dialyzer, {ct, "--verbose"}, cover, edoc]}]}.
{format, [{files, ["*.config", "src/*", "test/*"]}]}.
{hex, [{doc, edoc}]}.