-
Notifications
You must be signed in to change notification settings - Fork 66
/
rebar.config
50 lines (45 loc) · 1.05 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
% -*- Erlang -*-
% vim: ts=4 sw=4 et ft=erlang
%{erl_opts, [{parse_transform, stacktrace_transform}]}.
{cover_enabled, true}.
{xref_checks, [undefined_function_calls]}.
{pre_hooks,[
{"linux|bsd|darwin|solaris", compile, "priv/compat.escript"},
{"win32", compile, "escript.exe priv\\compat.escript"}
]}.
{deps, [
rekt,
{simple_bridge, "~> 2.3"},
{nitro_cache, "~> 0.5"},
nprocreg,
canister,
qdate,
{erlang_ds, "~> 0.3"},
nitro_qrcode
]}.
{dialzyzer, [
{plt_extra_apps, [
nprocreg,
simple_bridge,
nitro_cache,
canister,
qdate,
erlang_ds,
nitro_qrcode
]}
]}.
{project_plugins, [rebar3_ex_doc]}.
{hex, [{doc, ex_doc}]}.
{ex_doc, [
{extras, [
{"LICENSE", #{title => "License"}},
{"README.md", #{title => "Overview"}}
]},
{main, "README.md"},
{source_url, "https://github.com/nitrogen/nitrogen_core"},
{api_reference, false},
{skip_undefined_reference_warnings_on, [
"README.md",
"CONTRIB.md"
]}
]}.