2019-04-05 11:02:11 +00:00
|
|
|
[
|
|
|
|
{elvis, [
|
2022-04-28 08:42:34 +00:00
|
|
|
{verbose, true},
|
2019-04-05 11:02:11 +00:00
|
|
|
{config, [
|
|
|
|
#{
|
2021-09-01 16:49:22 +00:00
|
|
|
dirs => ["apps/*/src", "apps/*/include", "apps/*/test"],
|
2019-04-05 11:02:11 +00:00
|
|
|
filter => "*.erl",
|
2021-09-01 16:49:22 +00:00
|
|
|
ruleset => erl_files,
|
2019-04-05 11:02:11 +00:00
|
|
|
rules => [
|
2022-04-28 08:42:34 +00:00
|
|
|
{elvis_text_style, line_length, #{limit => 120}},
|
|
|
|
{elvis_text_style, no_trailing_whitespace, #{ignore_empty_lines => true}},
|
|
|
|
{elvis_style, nesting_level, #{level => 3}},
|
|
|
|
{elvis_style, function_naming_convention, #{regex => "^([a-z][a-z0-9]*_?)*$"}},
|
|
|
|
{elvis_style, no_if_expression, disable},
|
|
|
|
{elvis_style, dont_repeat_yourself, #{min_complexity => 15}},
|
|
|
|
{elvis_style, no_debug_call, #{
|
|
|
|
ignore => [bankcard_validation_invalid_carddata, bankcard_validation_valid_carddata]
|
|
|
|
}}
|
|
|
|
]
|
2019-04-05 11:02:11 +00:00
|
|
|
},
|
|
|
|
#{
|
|
|
|
dirs => ["."],
|
|
|
|
filter => "Makefile",
|
|
|
|
ruleset => makefiles
|
|
|
|
},
|
|
|
|
#{
|
|
|
|
dirs => ["."],
|
|
|
|
filter => "elvis.config",
|
|
|
|
ruleset => elvis_config
|
|
|
|
},
|
|
|
|
#{
|
|
|
|
dirs => ["."],
|
|
|
|
filter => "rebar.config",
|
2021-09-01 16:49:22 +00:00
|
|
|
ruleset => rebar_config,
|
2019-04-05 11:02:11 +00:00
|
|
|
rules => [
|
2022-04-28 08:42:34 +00:00
|
|
|
{elvis_text_style, line_length, #{limit => 120, skip_comments => false}},
|
|
|
|
{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}
|
|
|
|
]
|
2019-04-05 11:02:11 +00:00
|
|
|
},
|
|
|
|
#{
|
2021-09-01 16:49:22 +00:00
|
|
|
dirs => ["apps/*/src"],
|
2019-04-05 11:02:11 +00:00
|
|
|
filter => "*.app.src",
|
|
|
|
rules => [
|
2022-04-28 08:42:34 +00:00
|
|
|
{elvis_text_style, line_length, #{limit => 120, skip_comments => false}},
|
|
|
|
{elvis_text_style, no_tabs},
|
|
|
|
{elvis_text_style, no_trailing_whitespace}
|
|
|
|
]
|
2019-04-05 11:02:11 +00:00
|
|
|
}
|
|
|
|
]}
|
|
|
|
]}
|
|
|
|
].
|