-
Notifications
You must be signed in to change notification settings - Fork 2
/
rebar.config
99 lines (83 loc) · 2.04 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{minimum_otp_vsn, "21.0"}.
{alias, [
{check, [
lint,
xref,
dialyzer,
edoc,
{eunit, "-c"},
{ct, "-c"},
{proper, "-c"},
{cover, "-v --min_coverage=85"},
todo
]}
]}.
{dialyzer, [{warnings, [unknown]}]}.
{edoc_opts, [
{app_default, "https://www.erlang.org/doc/man"},
{image, ""},
{preprocess, true},
{title, "robots"}
]}.
{erl_opts, [
debug_info,
warn_unused_import,
warnings_as_errors
]}.
{deps, []}.
{project_plugins, [rebar3_ex_doc]}.
{hex, [{doc, ex_doc}]}.
{ex_doc, [
{extras, [
{"README.md", #{title => "Overview"}},
{"LICENSE", #{title => "License"}}
]},
{main, "README.md"},
{homepage_url, "https://github.com/AntoineGagne/robots"},
{source_url, "https://github.com/AntoineGagne/robots"}
]}.
{profiles, [
{prod, [
{relx, [
{dev_mode, false},
{include_erts, true}
]}
]},
{test, [
{erl_opts, [nowarn_export_all]},
{eunit_opts, [no_tty, {report, {unite_compact, []}}]},
{deps, [
{meck, "0.8.9"},
{proper, {git, "https://github.com/manopapad/proper.git", {branch, "master"}}},
{unite, {git, "https://github.com/eproxus/unite.git", {tag, "v0.4.0"}}}
]}
]}
]}.
{plugins, [
{rebar3_proper, "0.11.1"},
{rebar3_lint, {git, "https://github.com/project-fifo/rebar3_lint.git", {tag, "v0.4.0"}}},
{rebar3_todo, {git, "https://github.com/ferd/rebar3_todo.git", {branch, "master"}}},
rebar3_hex,
coveralls
]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{cover_export_enabled, true}.
{coveralls_coverdata, "_build/test/cover/*.coverdata"}.
{coveralls_parallel, true}.
{coveralls_service_name, "github"}.
{elvis, [
#{
dirs => ["."],
filter => "rebar.config",
ruleset => rebar_config
}
]}.
{xref_checks, [
undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions
]}.
{xref_ignores, []}.