-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathrebar.config
More file actions
23 lines (18 loc) · 764 Bytes
/
rebar.config
File metadata and controls
23 lines (18 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
%% -*- tab-width: 4;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ft=erlang ts=4 sw=4 et
{erl_opts, [debug_info]}.
{xref_checks, [undefined_function_calls]}.
{cover_enabled, true}.
{eunit_opts, [verbose]}.
{deps, []}.
{profiles, [{docs, [
{deps, [
{edown,
{git, "https://github.com/uwiger/edown.git",
{tag, "0.7"}}}
]},
{edoc_opts, [{doclet, edown_doclet},
{app_default, "http://www.erlang.org/doc/man"},
{top_level_readme,
{"./README.md", "http://github.com/benoitc/econfig"}}]}
]}]}.