chore: sync master `elvis.config`
This commit is contained in:
parent
577f1a7d8a
commit
d4508a4f1d
53
elvis.config
53
elvis.config
|
@ -3,60 +3,75 @@
|
|||
{
|
||||
elvis,
|
||||
[
|
||||
{config,
|
||||
[
|
||||
#{dirs => ["src", "apps/**/src"],
|
||||
{config, [
|
||||
#{
|
||||
dirs => ["src", "apps/**/src"],
|
||||
filter => "*.erl",
|
||||
ruleset => erl_files,
|
||||
rules => [
|
||||
{elvis_style, param_pattern_matching, disable},
|
||||
{elvis_style, macro_names, disable},
|
||||
{elvis_style, function_naming_convention, disable},
|
||||
{elvis_style, state_record_and_type, disable},
|
||||
{elvis_style, no_common_caveats_call, #{}},
|
||||
{elvis_style, no_debug_call, #{ debug_functions => [ {ct, pal}
|
||||
, {ct, print}
|
||||
]}},
|
||||
{elvis_style, operator_spaces, #{rules => [{right, "|"},
|
||||
{elvis_style, no_debug_call, #{
|
||||
debug_functions => [
|
||||
{ct, pal},
|
||||
{ct, print}
|
||||
]
|
||||
}},
|
||||
{elvis_style, operator_spaces, #{
|
||||
rules => [
|
||||
{right, "|"},
|
||||
{left, "|"},
|
||||
{right, "||"},
|
||||
{left, "||"}]}},
|
||||
{left, "||"}
|
||||
]
|
||||
}},
|
||||
{elvis_style, dont_repeat_yourself, #{min_complexity => 20}},
|
||||
{elvis_style, god_modules, #{limit => 100}},
|
||||
{elvis_text_style, line_length, #{ limit => 120 % trust erlfmt
|
||||
, skip_comments => false
|
||||
% trust erlfmt
|
||||
{elvis_text_style, line_length, #{
|
||||
limit => 120,
|
||||
skip_comments => false
|
||||
}}
|
||||
]
|
||||
},
|
||||
#{dirs => ["test", "apps/**/test"],
|
||||
#{
|
||||
dirs => ["test", "apps/**/test"],
|
||||
filter => "*.erl",
|
||||
rules => [
|
||||
{elvis_text_style, line_length, #{ limit => 120
|
||||
, skip_comments => false
|
||||
{elvis_text_style, line_length, #{
|
||||
limit => 120,
|
||||
skip_comments => false
|
||||
}},
|
||||
{elvis_style, dont_repeat_yourself, #{min_complexity => 100}},
|
||||
{elvis_style, nesting_level, #{level => 6}}
|
||||
]
|
||||
},
|
||||
#{dirs => ["apps/emqx_rule_engine/src"],
|
||||
#{
|
||||
dirs => ["apps/emqx_rule_engine/src"],
|
||||
filter => "*_rule_funcs.erl",
|
||||
rules => [
|
||||
{elvis_style, god_modules, disable}
|
||||
]
|
||||
},
|
||||
#{dirs => ["."],
|
||||
#{
|
||||
dirs => ["."],
|
||||
filter => "Makefile",
|
||||
ruleset => makefiles
|
||||
},
|
||||
#{dirs => ["."],
|
||||
#{
|
||||
dirs => ["."],
|
||||
filter => "rebar.config",
|
||||
ruleset => rebar_config
|
||||
},
|
||||
#{dirs => ["."],
|
||||
#{
|
||||
dirs => ["."],
|
||||
filter => "elvis.config",
|
||||
ruleset => elvis_config
|
||||
}
|
||||
]
|
||||
}
|
||||
]}
|
||||
]
|
||||
}
|
||||
].
|
||||
|
|
Loading…
Reference in New Issue