forked from emqx/emqtt-bench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
28 lines (22 loc) · 808 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
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ts=4 sw=4 ft=erlang et
{require_min_otp_vsn, "R17"}.
%warnings_as_errors, warn_untyped_record,
{erl_opts, [
warn_export_all,
warn_unused_import,
{i, "include"},
{src_dirs, ["src"]}
]}.
{xref_checks, [undefined_function_calls]}.
{cover_enabled, false}.
{edoc_opts, [{dialyzer_specs, all},
{report_missing_type, true},
{report_type_mismatch, true},
{pretty_print, erl_pp},
{preprocess, true}]}.
{validate_app_modules, true}.
{deps, [
{emqttc, ".*", {git, "git://github.com/emqtt/emqttc.git", {branch, "master"}}},
{getopt, "0.8.2", {git, "https://github.com/jcomellas/getopt.git", {branch, "master"}}}
]}.