-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrebar.config
29 lines (25 loc) · 837 Bytes
/
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
{erl_opts, [debug_info]}.
{deps, [
{sqlparser, {git, "https://github.com/altenwald/sqlparser", {branch, "master"}}},
{unistring, {git, "https://github.com/altenwald/unistring", {branch, "master"}}}
]}.
{profiles, [
{test, [
{cover_enabled, true},
{cover_opts, [verbose]}
]},
{doc, [
{plugins, [
{rebar_edown_plugin,
{git, "git://github.com/altenwald/rebar_edown_plugin.git", {branch, "master"}}
}
]},
{edoc_opts,[
{doclet, edown_doclet},
{edown_target, github},
{top_level_readme, {"./README.md", "http://github.com/altenwald/rdbms"}}
]}
]}
]}.
{xref_checks,[undefined_function_calls,undefined_functions,locals_not_used,
deprecated_function_calls,deprecated_functions]}.