anapi-v1/elvis.config
Andrew Mayorov e2b769917c
Bump to valitydev/damsel@318a7a6 (#1)
* Vendor in swagger-codegen-generated code instead

* Ensure testcase doesn't fail on client validation

* Bump deps + switch to valitydev upstreams
  * valitydev/scoper@7f3183d
  * valitydev/woody_erlang@3ddacb9
  * valitydev/cowboy_access_log@04da359
  * valitydev/bouncer-proto@633ba73
  * valitydev/bouncer_client_erlang@535449a
  * valitydev/genlib@82c5ff3
  * valitydev/party-shop-proto@72faaf6
  * valitydev/analytics-proto@f691834

* Add CI/CD @ GH Actions

* Cleanup sys.config

* Bump to valitydev/damsel@318a7a6
2022-03-18 16:44:17 +03:00

54 lines
1.9 KiB
Plaintext

[
{elvis, [
{verbose, true},
{config, [
#{
dirs => ["apps/*/src", "apps/*/include", "apps/*/test"],
filter => "*.erl",
ignore => ["apps/swag_*"],
ruleset => erl_files,
rules => [
{elvis_text_style, line_length, #{limit => 120}},
{elvis_style, no_if_expression, disable},
% Just being lazy
{elvis_style, atom_naming_convention, #{regex => "^([a-z][a-zA-Z0-9]*_?)*$"}},
{elvis_style, dont_repeat_yourself, #{min_complexity => 30}}
]
},
#{
dirs => ["."],
filter => "Makefile",
ruleset => makefiles
},
#{
dirs => ["."],
filter => "elvis.config",
ruleset => elvis_config
},
#{
dirs => [".", "apps/*"],
filter => "rebar.config",
ignore => ["apps/swag_*"],
ruleset => rebar_config,
rules => [
{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}
]
},
#{
dirs => ["apps/*/src"],
filter => "*.app.src",
ignore => ["apps/swag_*"],
rules => [
{elvis_text_style, line_length, #{limit => 120}},
{elvis_text_style, no_tabs},
{elvis_text_style, no_trailing_whitespace}
]
}
]}
]}
].