style: reformat files in `erlang-mode`

This commit is contained in:
JimMoen 2024-06-04 22:18:14 +08:00
parent 023bb5e766
commit 336ed1b922
No known key found for this signature in database
2 changed files with 88 additions and 74 deletions

View File

@ -1,12 +1,12 @@
%% -*- mode: erlang -*-
{application, http_server,
[{description, "An HTTP server application"},
{application, http_server, [
{description, "An HTTP server application"},
{vsn, "0.2.0"},
{registered, []},
% {mod, {http_server_app, []}},
{modules, []},
{applications,
[kernel,
{applications, [
kernel,
stdlib,
minirest
]},

View File

@ -3,9 +3,9 @@
{
elvis,
[
{config,
[
#{dirs => ["src", "apps/**/src"],
{config, [
#{
dirs => ["src", "apps/**/src"],
filter => "*.erl",
ruleset => erl_files,
rules => [
@ -13,50 +13,64 @@
{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
}
]
}
]}
]
}
].