-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrebar.config
More file actions
71 lines (62 loc) · 1.87 KB
/
Copy pathrebar.config
File metadata and controls
71 lines (62 loc) · 1.87 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
{erl_opts, [
debug_info,
warnings_as_errors,
warn_missing_spec,
{feature, maybe_expr, enable}
]}.
{src_dirs, [{"src", [{recursive, true}]}]}.
{shell, [{config, "./config/dev_sys.config.src"}]}.
{deps, [
{nova, {git, "https://github.com/novaframework/nova.git", {branch, "master"}}},
{kura, {git, "https://github.com/Taure/kura.git", {branch, "main"}}},
{arizona_core, {git, "https://github.com/novaframework/arizona_core.git", {branch, "main"}}},
{arizona_nova, {git, "https://github.com/novaframework/arizona_nova.git", {branch, "main"}}},
{asobi, {git, "https://github.com/widgrensit/asobi.git", {branch, "main"}}}
]}.
{relx, [
{release, {asobi_admin, git}, [
asobi_admin,
sasl
]},
{mode, dev},
{sys_config_src, "./config/dev_sys.config.src"},
{vm_args_src, "./config/vm.args.src"}
]}.
{profiles, [
{prod, [
{relx, [
{mode, prod},
{sys_config_src, "./config/prod_sys.config.src"}
]}
]},
{test, [
{erl_opts, [nowarn_export_all, nowarn_missing_spec, warnings_as_errors]}
]}
]}.
{project_plugins, [
{rebar3_nova, {git, "https://github.com/Taure/rebar3_nova.git", {branch, "feat/unified-gen"}}},
{rebar3_audit, {git, "https://github.com/Taure/rebar3_audit.git", {branch, "main"}}},
{rebar3_sbom,
{git, "https://github.com/Taure/rebar3_sbom.git", {branch, "feat/include-otp-components"}}},
{erlfmt, "~>1.7"}
]}.
{erlfmt, [
write,
{files, [
"rebar.config",
"src/*.app.src",
"src/**/{*.erl, *.hrl}"
]}
]}.
{xref_checks, [
undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions
]}.
{dialyzer, [
{plt_apps, all_deps},
{warnings, [unknown, unmatched_returns]}
]}.