-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
30 lines (30 loc) · 1.59 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
{deps, [{lager, "2.0.*", {git, "git://github.com/basho/lager.git", "2.0.3"}},
{eper, "0.*", {git, "git://github.com/massemanet/eper.git", "0.97.3"}},
{erldis, "\.*", {git, "git://github.com/japerk/erldis.git", "0.3.2"}},
{eleveldb, "\.*", {git, "git://github.com/basho/eleveldb.git", "2.0"}},
{hanoidb, "\.*", {git, "git://github.com/basho-labs/hanoidb.git", "master"}},
{riakc, "\.*", {git, "git://github.com/basho/riak-erlang-client.git", "2.1.1"}},
{pmod_transform, ".*", {git,"git://github.com/erlang/pmod_transform.git", "master"}}]}.
{require_otp_vsn, "R1[456]"}.
{erl_first_files, ["src/edis_backend.erl", "test/edis_bench.erl"]}.
{erl_opts, [{parse_transform, lager_transform},
%% {src_dirs, ["src", "src/backends", "tests", "test/benchmarks"]},
{src_dirs, ["src", "src/backends", "test/benchmarks"]},
%{i, "deps/lager/include"},
warn_unused_vars,
warn_export_all,
warn_shadow_vars,
warn_unused_import,
warn_unused_function,
warn_bif_clash,
warn_unused_record,
warn_deprecated_function,
warn_obsolete_guard,
strict_validation,
warn_export_vars,
warn_exported_vars,
warn_missing_spec,
warn_untyped_record, debug_info]}.
{xref_checks, [undefined_function_calls]}.
{ct_extra_params," -dir ./test/ebin -logdir logs/ct"}.
{edoc_opts, [{report_missing_types, true}, {source_path, ["src"]}, {report_missing_types, true}, {todo, true}, {packages, false}, {subpackages, false}]}.