2021-02-17 09:47:57 +00:00
|
|
|
[
|
|
|
|
{elvis, [
|
2022-04-18 08:00:48 +00:00
|
|
|
{verbose, true},
|
2021-02-17 09:47:57 +00:00
|
|
|
{config, [
|
|
|
|
#{
|
2022-04-18 08:00:48 +00:00
|
|
|
dirs => ["apps/*/src", "apps/*/include"],
|
2021-02-17 09:47:57 +00:00
|
|
|
filter => "*.erl",
|
2022-04-18 08:00:48 +00:00
|
|
|
ruleset => erl_files,
|
2021-02-17 09:47:57 +00:00
|
|
|
rules => [
|
2022-04-18 08:00:48 +00:00
|
|
|
{elvis_text_style, line_length, #{limit => 120}},
|
2022-04-19 15:03:09 +00:00
|
|
|
{elvis_style, god_modules, #{limit => 30}},
|
2021-02-17 09:47:57 +00:00
|
|
|
{elvis_style, nesting_level, #{level => 3}},
|
2022-04-18 08:00:48 +00:00
|
|
|
{elvis_style, no_if_expression, disable}
|
2021-02-17 09:47:57 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
#{
|
|
|
|
dirs => ["apps/*/test"],
|
|
|
|
filter => "*.erl",
|
2022-04-18 08:00:48 +00:00
|
|
|
ruleset => erl_files,
|
2021-02-17 09:47:57 +00:00
|
|
|
rules => [
|
2022-04-18 08:00:48 +00:00
|
|
|
{elvis_text_style, line_length, #{limit => 120}},
|
|
|
|
% We want to use `ct:pal/2` and friends in test code.
|
|
|
|
{elvis_style, no_debug_call, disable},
|
|
|
|
% Assert macros can trigger use of ignored binding, yet we want them for better
|
|
|
|
% readability.
|
|
|
|
{elvis_style, used_ignored_variable, disable},
|
|
|
|
% Tests are usually more comprehensible when a bit more verbose.
|
2022-06-10 09:56:13 +00:00
|
|
|
{elvis_style, dont_repeat_yourself, #{min_complexity => 20}},
|
2024-10-31 10:47:43 +00:00
|
|
|
{elvis_style, god_modules, #{
|
|
|
|
limit => 50,
|
|
|
|
ignore => [
|
|
|
|
% NOTE Maybe refactor testsuite by moving helpers to according ct-modules
|
|
|
|
lim_turnover_SUITE
|
|
|
|
]
|
|
|
|
}}
|
2021-02-17 09:47:57 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
#{
|
|
|
|
dirs => ["."],
|
|
|
|
filter => "Makefile",
|
|
|
|
ruleset => makefiles
|
|
|
|
},
|
|
|
|
#{
|
|
|
|
dirs => ["."],
|
|
|
|
filter => "elvis.config",
|
|
|
|
ruleset => elvis_config
|
|
|
|
},
|
|
|
|
#{
|
2022-04-18 08:00:48 +00:00
|
|
|
dirs => [".", "apps/*"],
|
2021-02-17 09:47:57 +00:00
|
|
|
filter => "rebar.config",
|
2022-04-18 08:00:48 +00:00
|
|
|
ruleset => rebar_config,
|
2021-02-17 09:47:57 +00:00
|
|
|
rules => [
|
2022-04-18 08:00:48 +00:00
|
|
|
{elvis_text_style, line_length, #{limit => 120}},
|
|
|
|
{elvis_text_style, no_tabs},
|
|
|
|
{elvis_text_style, no_trailing_whitespace},
|
|
|
|
%% Temporarily disabled till regex pattern is available
|
|
|
|
{elvis_project, no_deps_master_rebar, disable}
|
2021-02-17 09:47:57 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
#{
|
2022-04-18 08:00:48 +00:00
|
|
|
dirs => ["apps/*/src"],
|
2021-02-17 09:47:57 +00:00
|
|
|
filter => "*.app.src",
|
|
|
|
rules => [
|
2022-04-18 08:00:48 +00:00
|
|
|
{elvis_text_style, line_length, #{limit => 120}},
|
|
|
|
{elvis_text_style, no_tabs},
|
|
|
|
{elvis_text_style, no_trailing_whitespace}
|
2021-02-17 09:47:57 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
]}
|
|
|
|
]}
|
|
|
|
].
|