-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
60 lines (52 loc) · 1.25 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{erl_opts, [
debug_info,
warnings_as_errors,
warn_export_vars,
warn_unused_import,
warn_keywords
]}.
{dialyzer, [
{plt_apps, all_deps},
incremental,
{warnings, [unmatched_returns]}
]}.
{overrides, [
{override, jose, [{erl_opts, [debug_info, no_warnings_as_errors]}]}
]}.
{deps, [
{jsx, {git, "https://github.com/talentdeficit/jsx.git", {tag, "v3.1.0"}}},
{jose, {git, "https://github.com/potatosalad/erlang-jose.git", {tag, "1.11.5"}}},
{hackney, {git, "https://github.com/benoitc/hackney.git", {tag, "1.18.0"}}}
]}.
{shell, [
{config, "config/sys.config"},
{apps, [id_token]}
]}.
{project_plugins, [
{erlfmt, "1.5.0"},
{rebar3_proper, "0.12.1"},
{rebar3_lint, "3.2.6"}
]}.
{profiles, [
{test, [
{cover_enabled, true},
{cover_opts, [verbose]},
{erl_opts, [nowarn_export_all]},
{deps, [
{proper, "1.4.0"},
{meck, "0.8.13"}
]}
]}
]}.
{xref_checks, [
undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions
]}.
{erlfmt, [
write,
{files, ["**/*.{hrl,erl,app.src,config}"]},
{exclude_files, ["_build/**", ".direnv/**", ".github/**", "doc/**"]}
]}.