From 0bb4ffce89a1816a404aaf846d9d67c21118c84a Mon Sep 17 00:00:00 2001 From: Benjamin Neff Date: Wed, 29 Sep 2021 23:39:58 +0200 Subject: [PATCH] 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. --- .rubocop.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index 71c3b4bd0..eca15ddb9 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -179,6 +179,10 @@ Layout/DotPosition: Style/HashEachMethods: 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 Style/HashTransformKeys: Enabled: false