-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
83 lines (74 loc) · 1.66 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
%% -*- erlang -*-
{erl_opts, [
warnings_as_errors,
warn_export_all,
warn_untyped_record,
inline,
debug_info,
fail_on_warning,
{parse_transform},
{parse_transform, lager_transform}
]}.
{clean_files, [
".eunit/*", "ebin/*.beam"
]}.
{deps, [
lager,
jsone,
edown
]}.
{profiles,[
{test, [
{erl_opts, [nowarn_export_all]},
{shell, [
{apps, [jsone, ovsdb, erlsh, sync]},
{vm_args, "config/vm.args"},
{config, "config/sys.config"}
]},
{plugins, [covertool]},
{deps, [
{sync, {git, "https://github.com/rustyio/sync.git", {branch, "master"}}},
{erlsh, {git, "https://github.com/proger/erlsh.git", {branch, "master"}}}
]}
]},
{edown, [
{edoc_opts,[
{sort_functions, false},
{doclet, edown_doclet}
]},
{deps, [edown]}
]},
{ct_profile, [
{plugins, [covertool]}
]}
]}.
{relx, [
{release, { ovsdb, "0.1.0" }, [
ovsdb
]},
{sys_config, "./config/sys.config"},
{vm_args, "./config/vm.args"},
{dev_mode, false},
{include_erts, false},
{include_src, false},
{extended_start_script, true}
]}.
{cover_enabled, true}.
{edoc_opts, [
{dialyzer_specs, all},
{report_missing_type, true},
{report_type_mismatch, true},
{pretty_print, erl_pp},
{doclet, edown_doclet},
{preprocess, true}
]}.
{validate_app_modules, true}.
{dialyzer, [
{warnings, [
error_handling, race_conditions, unmatched_returns, unknown, no_improper_lists
]}
]}.
{xref_checks, [
fail_on_warning,
undefined_function_calls
]}.