2016-09-05 12:21:44 +00:00
|
|
|
[
|
|
|
|
{elvis, [
|
|
|
|
{config, [
|
|
|
|
#{
|
|
|
|
dirs => [
|
|
|
|
"apps/*/src",
|
|
|
|
"apps/*/test"
|
|
|
|
],
|
|
|
|
filter => "*.erl",
|
2017-05-26 09:18:44 +00:00
|
|
|
ignore => ["_thrift.erl$", "src/swag_server*", "_SUITE.erl$"],
|
2016-09-05 12:21:44 +00:00
|
|
|
rules => [
|
|
|
|
{elvis_style, line_length, #{limit => 120, skip_comments => false}},
|
|
|
|
{elvis_style, no_tabs},
|
|
|
|
{elvis_style, no_trailing_whitespace},
|
|
|
|
{elvis_style, macro_module_names},
|
|
|
|
{elvis_style, operator_spaces, #{rules => [{right, ","}, {right, "++"}, {left, "++"}]}},
|
|
|
|
{elvis_style, nesting_level, #{level => 3}},
|
|
|
|
{elvis_style, god_modules, #{limit => 25}},
|
|
|
|
{elvis_style, no_if_expression},
|
2017-05-03 11:00:02 +00:00
|
|
|
{elvis_style, invalid_dynamic_call, #{ignore => [capi_swagger_server]}},
|
2016-09-05 12:21:44 +00:00
|
|
|
{elvis_style, used_ignored_variable},
|
|
|
|
{elvis_style, no_behavior_info},
|
2017-05-03 11:00:02 +00:00
|
|
|
{elvis_style, module_naming_convention, #{regex => "^[a-z]([a-z0-9]*_?)*(_SUITE)?$"}},
|
|
|
|
{elvis_style, function_naming_convention, #{regex => "^[a-z]([a-z0-9]*_?)*$"}},
|
2016-09-05 12:21:44 +00:00
|
|
|
{elvis_style, state_record_and_type},
|
|
|
|
{elvis_style, no_spec_with_records},
|
|
|
|
{elvis_style, dont_repeat_yourself, #{
|
2017-06-21 08:43:31 +00:00
|
|
|
min_complexity => 30,
|
2016-09-05 12:21:44 +00:00
|
|
|
ignore => [
|
|
|
|
capi_tests_mock_SUITE,
|
|
|
|
capi_tests_real_SUITE
|
|
|
|
]
|
|
|
|
}},
|
2017-05-03 11:00:02 +00:00
|
|
|
{elvis_style, no_debug_call, #{}}
|
2016-09-05 12:21:44 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
#{
|
|
|
|
dirs => ["."],
|
|
|
|
filter => "Makefile",
|
|
|
|
ruleset => makefiles
|
|
|
|
},
|
|
|
|
#{
|
|
|
|
dirs => ["."],
|
|
|
|
filter => "elvis.config",
|
|
|
|
ruleset => elvis_config
|
|
|
|
},
|
|
|
|
#{
|
|
|
|
dirs => ["apps", "apps/*"],
|
|
|
|
filter => "rebar.config",
|
|
|
|
rules => [
|
|
|
|
{elvis_style, line_length, #{limit => 120, skip_comments => false}},
|
|
|
|
{elvis_style, no_tabs},
|
|
|
|
{elvis_style, no_trailing_whitespace}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
#{
|
|
|
|
dirs => ["."],
|
|
|
|
filter => "rebar.config",
|
|
|
|
rules => [
|
|
|
|
{elvis_style, line_length, #{limit => 120, skip_comments => false}},
|
|
|
|
{elvis_style, no_tabs},
|
|
|
|
{elvis_style, no_trailing_whitespace}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
#{
|
|
|
|
dirs => ["apps/*/src"],
|
|
|
|
filter => "*.app.src",
|
2017-05-26 09:18:44 +00:00
|
|
|
ignore => ["src/swag_server*"],
|
2016-09-05 12:21:44 +00:00
|
|
|
rules => [
|
|
|
|
{elvis_style, line_length, #{limit => 120, skip_comments => false}},
|
|
|
|
{elvis_style, no_tabs},
|
|
|
|
{elvis_style, no_trailing_whitespace}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]}
|
|
|
|
]}
|
|
|
|
].
|