From 10916ce53cdfc151cb04861fda67ec703a220117 Mon Sep 17 00:00:00 2001 From: Michael Ball Date: Wed, 8 May 2024 10:53:24 +0200 Subject: [PATCH] Update .rubocop.yml --- .rubocop.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.rubocop.yml b/.rubocop.yml index 802da0b2..a79ba115 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -95,7 +95,9 @@ Layout/EmptyLinesAroundModuleBody: # Use Ruby >= 1.9 syntax for hashes. Prefer { a: :b } over { :a => :b }. Style/HashSyntax: Enabled: true - EnforcedShorthandSyntax: consistent + EnforcedShorthandSyntax: never + # TODO: Enable this after upgrading rubocop, consistent would be preferred over never + # EnforcedShorthandSyntax: consistent # Method definitions after `private` or `protected` isolated calls need one # extra level of indentation.