This repository has been archived by the owner on Jul 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
elvis.config
57 lines (57 loc) · 2.56 KB
/
elvis.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
[
{
elvis,
[
{config,
[#{dirs => ["src"],
filter => "*.erl",
ignore => ["src/oc_trace_pb.erl", "src/oc_trace_config_pb.erl"],
rules => [{elvis_style, god_modules, #{ignore => [ocp]}},
{elvis_style, no_debug_call, #{ignore => [oc_reporter_stdout,
oc_stat_exporter_stdout]}},
{elvis_style, dont_repeat_yourself, #{min_complexity => 20}},
{elvis_style, line_length, #{limit => 120}},
{elvis_style, state_record_and_type, disable},
{elvis_style, no_if_expression, disable},
{elvis_style, function_naming_convention, #{regex => "^_{0,2}([a-z][a-z0-9]*_?)*_{0,2}$"}},
%% sequential reporter calls other reporters dynamically
%% stat view proxies measures
{elvis_style, invalid_dynamic_call, #{ignore => [oc_reporter_sequential, %% loops over reporters
oc_stat_view, %% calls aggragtions
oc_stat_measure, %% calls generated modules
oc_stat_exporter, %% loops over exporters,
oc_producer_registry %% loops over metric producers
]}}],
ruleset => erl_files
},
#{dirs => ["test"],
filter => "*.erl",
rules => [{elvis_style, god_modules, #{ignore => [egithub]}},
{elvis_style, dont_repeat_yourself, #{min_complexity => 30}},
{elvis_style, line_length, #{limit => 120}},
{elvis_style, no_if_expression, disable},
%% be a bit more lax on naming for tests
{elvis_style, variable_naming_convention, #{regex => "^_{0,2}([A-Z][0-9a-zA-Z]*)$"}},
{elvis_style, state_record_and_type, disable}],
ruleset => erl_files
},
#{dirs => ["."],
filter => "Makefile",
rules => [{elvis_project,
protocol_for_deps_erlang_mk,
#{regex => "(https://.*|[0-9]+([.][0-9]+)*)"}}],
ruleset => makefiles
},
#{dirs => ["."],
filter => "rebar.config",
ruleset => rebar_config
},
#{dirs => ["."],
filter => "elvis.config",
ruleset => elvis_config
}
]
}
]
}
].