-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrebar.config
20 lines (20 loc) · 977 Bytes
/
rebar.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
%% -*- erlang -*-
{erl_opts, [debug_info, {parse_transform, lager_transform}]}.
{deps, [
{edown, ".*", {git, "https://github.com/esl/edown.git", "HEAD"}},
{yang, ".*", {git, "[email protected]:Feuerlabs/yang.git", "HEAD"}},
{lager, ".*", {git, "[email protected]:basho/lager.git", "HEAD"}}
]}.
{dialyzer_opts, [{warnings, [no_unused,
no_improper_lists, no_fun_app, no_match,
no_opaque, no_fail_call,
error_handling, no_match,
unmatched_returns,
behaviours, underspecs]}]}.
{edoc_opts, [{doclet, edown_doclet},
{app_default, "http://www.erlang.org/doc/man"},
{doc_path, ["http://raw.github.com/uwiger/setup/master/doc",
"http://raw.github.com/uwiger/gproc/master/doc"]},
{top_level_readme,
{"./README.md",
"https://github.com/Feuerlabs/exodm_plugin"}}]}.