-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
104 lines (90 loc) · 2.28 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
100
101
102
103
104
{minimum_otp_vsn, "21.0"}.
{alias, [
{check, [
edoc,
{fmt, "-c"},
xref,
dialyzer,
{proper, "-c"},
{eunit, "-c"},
{ct, "-c"},
{cover, "-v"}
]}
]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{cover_export_enabled, true}.
{coveralls_coverdata, [
"_build/test/cover/ct.coverdata",
"_build/test/cover/eunit.coverdata",
"_build/test/cover/proper.coverdata"
]}.
{coveralls_service_name, "github"}.
{deps, []}.
{edoc_opts, [
{app_default, "https://www.erlang.org/doc/man"},
{image, ""},
{preprocess, true},
{title, "parthenon"}
]}.
{erlfmt, [
{files, ["{src,include,test}/**/*.{hrl,erl}"]},
{exclude_files, [
"src/parthenon_schema_lexer.erl",
"src/parthenon_schema_parser.erl"
]}
]}.
{erl_opts, [
debug_info,
warn_unused_import,
warn_as_errors
]}.
{ex_doc, [
{extras, [
{"README.md", #{title => "Overview"}},
{"LICENSE", #{title => "License"}}
]},
{main, "README.md"},
{homepage_url, "https://github.com/AntoineGagne/parthenon"},
{source_url, "https://github.com/AntoineGagne/parthenon"}
]}.
{hex, [{doc, ex_doc}]}.
{plugins, []}.
{project_plugins, [
{erlfmt, {git, "https://github.com/WhatsApp/erlfmt.git", {tag, "v1.0.0"}}},
{rebar3_proper, {git, "https://github.com/ferd/rebar3_proper.git", {tag, "0.12.1"}}},
rebar3_hex,
rebar3_ex_doc,
coveralls
]}.
{profiles, [
{analyze, [
{erl_opts, [
debug_info,
warn_unused_import,
warn_as_errors,
bin_opt_info
]}
]},
{test, [
{deps, [
{meck, {git, "https://github.com/eproxus/meck.git", {tag, "0.9.2"}}},
{proper, {git, "https://github.com/proper-testing/proper.git", {tag, "v1.4"}}},
{unite, {git, "https://github.com/eproxus/unite.git", {tag, "0.3.1"}}},
{coveralls, "2.2.0"}
]},
{erl_opts, [export_all, nowarn_export_all, debug_info]},
{eunit_opts, [no_tty, {report, {unite_compact, []}}]}
]}
]}.
{xref_checks, [
deprecated_functions,
deprecated_function_calls,
locals_not_used,
undefined_function_calls,
undefined_functions
]}.
{xref_ignores, [
parthenon_schema_lexer,
parthenon_schema_parser
]}.