-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathrebar.config
32 lines (29 loc) · 1001 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
%% -*- tab-width: 4;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ft=erlang ts=4 sw=4 et
%%
%% This Source Code Form is subject to the terms of the Mozilla Public
%% License, v. 2.0. If a copy of the MPL was not distributed with this
%% file, You can obtain one at http://mozilla.org/MPL/2.0/.
%%
{erl_opts, [fail_on_warning,
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,
warn_export_vars,
warn_exported_vars,
%%warn_untyped_record,
% warn_missing_spec,
% strict_validation,
debug_info]}.
{pre_hooks, [{clean, "rm -fr ebin priv erl_crash.dump"}]}.
{deps, [
%% BTREE library
{cbt, ".*", {git, "https://github.com/benoitc/cbt.git",
{tag, "1.2.2"}}}
]}.