-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrebar.config
More file actions
27 lines (22 loc) · 791 Bytes
/
rebar.config
File metadata and controls
27 lines (22 loc) · 791 Bytes
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
%% -*- erlang -*-
{erl_opts, [debug_info]}.
{cover_enabled, true}.
{provider_hooks, [{post, [{compile, {erlando, compile}}]}]}.
{deps, [
{'erlando', {git, "https://github.com/slepher/erlando.git", {tag, "2.8.0" }}},
{'lenses', {git, "https://github.com/slepher/lenses.git", {tag, "0.4.0" }}}
]}.
{xref_checks, [undefined_function_calls, undefined_functions,
locals_not_used,
deprecated_function_calls, deprecated_functions]}.
{dialyzer,
[
%% Store PLT locally inside the project in .rebar (Default)
{plt_location, local},
{warnings, [unmatched_returns, error_handling, race_conditions, unknown]}
]}.
{profiles, [
{test, [
{erl_opts, [{parse_transform, astranaut_disable_tco}, nowarn_export_all]}
]}
]}.