-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrebar.config
More file actions
78 lines (69 loc) · 3.12 KB
/
rebar.config
File metadata and controls
78 lines (69 loc) · 3.12 KB
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
{erl_opts, [debug_info, warn_export_vars, warn_shadow_vars, warn_obsolete_guard]}.
{plugins, [
{rebar3_elixir, "~> 0.1.2"},
rebar3_hex,
rebar3_lint
]}.
{elixir_bindings, [{efranc, [{as, "EFranc"}]},
{efranc_lang, [{as, "EFranc.Lang"}]}]}.
{deps, []}.
{eunit_opts, [no_tty, {report, {unite_compact, [profile]}}]}.
{profiles, [
{escriptize, [
{deps, [
{getopt, {git, "https://github.com/jcomellas/getopt.git", {branch, "master"}}},
{color, {git, "https://github.com/julianduque/erlang-color.git", {branch, "master"}}}
]},
{src_dirs, ["src", "bin"]},
{escript_main_app, efranc},
{escript_emu_args, "%%! -escript main efranc_app\n"},
{escript_incl_apps, [efranc, getopt, color]}
]},
{test, [
{deps, [
meck,
{unite, "", {git, "git://github.com/basho/unite.git", {branch, "master"}}}
]}
]},
{docs, [
{deps, [
{edown, {git, "https://github.com/botsunit/edown.git", {branch, "master"}}}
]},
{edoc_opts, [
{doclet, edown_doclet}
, {app_default, "http://www.erlang.org/doc/man"}
, {source_path, ["src"]}
, {overview, "overview.edoc"}
, {stylesheet, ""}
, {image, ""}
, {top_level_readme, {"./README.md", "https://github.com/G-Corp/efranc"}}
]}
]},
{release, [
{elvis, [
#{dirs => ["."],
filter => "rebar.config",
rules => [{elvis_project, no_deps_master_rebar, []}]}]}
]}
]}.
{elvis,
[#{dirs => ["src", "test"],
filter => "*.erl",
rules => [{elvis_style, line_length, #{limit => 180}},
{elvis_style, no_tabs},
{elvis_style, no_trailing_whitespace},
{elvis_style, macro_names},
{elvis_style, macro_module_names},
{elvis_style, dont_repeat_yourself, #{min_complexity => 25}},
{elvis_style, operator_spaces, #{rules => [{right, ","},
{right, "++"},
{left, "++"}]}}]}]}.
{xref_warnings, false}.
{xref_extra_paths, []}.
{xref_checks, [undefined_function_calls
, undefined_functions
, locals_not_used
% , exports_not_used
, deprecated_function_calls
, deprecated_functions]}.
{dialyzer, [{plt_prefix, "efranc"}]}.