forked from g-andrade/erlquad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
42 lines (38 loc) · 824 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
% vim: set ft=erlang expandtab softtabstop=4 shiftwidth=4:
{erl_opts,
[%bin_opt_info,
debug_info,
warn_export_all,
warn_export_vars,
warn_missing_spec,
warn_obsolete_guards,
warn_shadow_vars,
warn_unused_import,
warnings_as_errors]}.
{xref_checks,
[undefined_function_calls,
undefined_functions,
locals_not_used,
exports_not_used,
deprecated_function_calls,
deprecated_functions]}.
{dialyzer,
[{plt_include_all_deps, true},
{warnings,
[unmatched_returns,
error_handling,
race_conditions,
underspecs
]}
]}.
{cover_enabled, true}.
{profiles,
[{generate_documentation,
[{deps,
[{edown, ".*", {git, "https://github.com/uwiger/edown.git", {tag, "0.8.1"}}}]},
{edoc_opts, [{doclet, edown_doclet}]}
]},
{publish,
[{plugins, [{rebar3_hex,"6.4.0"}]}]}
]
}.