-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
rebar.config
59 lines (52 loc) · 1.47 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
{erl_opts, [
debug_info,
warnings_as_errors
]}.
{deps,[
{ezic, "0.2.3"},
{unistring, "0.1.0"},
{zucchini, "0.1.0"},
{getopt, "1.0.1"},
{recon, "2.3.2"}
]}.
{escript_incl_apps, [ezic,zucchini,unistring,recon]}.
{escript_emu_args, "%%! -pa ephp/ephp/ebin "
"-pa ephp/ezic/ebin "
"-pa ephp/zucchini/ebin "
"-pa ephp/getopt/ebin "
"-pa ephp/recon/ebin\n"}.
{escript_incl_extra, [{"ephp/priv/*", "_build/default/lib/"},
{"ezic/priv/tzdata/version", "_build/default/lib"}]}.
{project_plugins, [
rebar3_hex,
rebar3_format,
rebar3_lint,
rebar3_ex_doc,
covertool
]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{cover_export_enabled, true}.
{profiles, [
{dev, [
{erl_opts, [{d, 'TEST'}]},
{deps, [eper]}
]},
{doc, [
{ex_doc, [
{extras, [
{"README.md", #{title => "Overview"}},
{"COMPATIBILITY.md", #{title => "Compatibility"}},
{"CONTRIBUTING.md", #{title => "Contributing"}},
{"COPYING", #{title => "License"}}
]},
{main, "README.md"},
{source_url, "https://github.com/bragful/ephp"}
]}
]}
]}.
{xref_checks,[undefined_function_calls,undefined_functions,locals_not_used,
deprecated_function_calls,deprecated_functions]}.
{dialyzer, [
{exclude_apps, [ezic]}
]}.