-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrebar.config
More file actions
49 lines (43 loc) · 1.08 KB
/
rebar.config
File metadata and controls
49 lines (43 loc) · 1.08 KB
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
{erl_opts, [debug_info]}.
{deps, [
nova,
{arizona_core, {git, "https://github.com/novaframework/arizona_core.git", {branch, "main"}}},
{arizona_nova, {git, "https://github.com/novaframework/arizona_nova.git", {branch, "main"}}}
]}.
{project_plugins, [
{erlfmt, "~>1.7"}
]}.
{erlfmt, [
write,
{files, [
"rebar.config",
"src/*.app.src",
"src/**/{*.erl, *.hrl}",
"test/**/{*.erl, *.hrl}"
]}
]}.
{xref_checks, [
undefined_function_calls,
undefined_functions
]}.
{xref_ignores, [
{kura_repo, config, 1},
{kura_migrator, status, 1},
{kura_schema, associations, 1},
{kura_schema, indexes, 1}
]}.
{dialyzer, [
{plt_apps, all_deps},
{exclude_mods, [
nova_liveboard_layout,
nova_liveboard_system_view,
nova_liveboard_processes_view,
nova_liveboard_ets_view,
nova_liveboard_apps_view,
nova_liveboard_ports_view,
nova_liveboard_sup_view,
nova_liveboard_metrics_view,
nova_liveboard_database_view,
nova_liveboard_schemas_view
]}
]}.