forked from Feuerlabs/exometer_core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
50 lines (43 loc) · 891 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
%% -*- erlang -*-
{deps,
[
{parse_trans, "3.4.1"},
{folsom, "1.0.0"},
{hut, "1.3.0"},
{setup, "2.1.0"}
]}.
{profiles,
[
{test, [{deps, [{meck, "0.9.2"}]},
{extra_src_dirs, [{"test", [{recursive, true}]}]}
]},
{docs, [{deps, [{edown, "0.8.4"}]}]}
]}.
{erl_opts,
[
debug_info,
fail_on_warning,
{platform_define, "^((1[8|9])|2)", rand_module},
{verbosity, trace}
]}.
{sub_dirs, ["src"]}.
{edoc_opts,
[
{doclet, edown_doclet},
{app_default, "http://www.erlang.org/doc/man"},
{doc_path, []},
{top_level_readme,
{"./README.md",
"https://github.com/Feuerlabs/exometer_core", "master"}}
]}.
{xref_checks,
[
undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_functions_calls,
deprecated_functions
]}.
{cover_enabled, true}.
{cover_print_enabled, true}.
{clean_files, ["test/app1/ebin/*.beam"]}.