Disable Style/AccessorGrouping in rubocop

It makes more sense to allow to structure and group accessors how it
makes sense in the code instead of enforcing it to be grouped in a
specific way.
This commit is contained in:
Benjamin Neff 2021-09-29 23:39:58 +02:00
parent b2a56376cd
commit 0bb4ffce89
No known key found for this signature in database
GPG key ID: 971464C3F1A90194

View file

@ -179,6 +179,10 @@ Layout/DotPosition:
Style/HashEachMethods: Style/HashEachMethods:
Enabled: true Enabled: true
# It makes more sense to allow to structure and group them how it makes sense in the code
Style/AccessorGrouping:
Enabled: false
# TODO: Enable with Ruby 2.5 # TODO: Enable with Ruby 2.5
Style/HashTransformKeys: Style/HashTransformKeys:
Enabled: false Enabled: false