From d1d6b48b32a40e6a823150763514588ace1038ee Mon Sep 17 00:00:00 2001 From: Darius Schneider <schneider@itc.rwth-aachen.de> Date: Thu, 26 Sep 2024 15:11:06 +0200 Subject: [PATCH] comment rubocop --- rails/rubocop.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/rails/rubocop.yml b/rails/rubocop.yml index 8fb5e1c..247bc2a 100644 --- a/rails/rubocop.yml +++ b/rails/rubocop.yml @@ -148,19 +148,19 @@ Style/RedundantSelf: # enforce double quotes in string literals Style/StringLiterals: - EnforcedStyle: double_quotes + EnforcedStyle: double_quotes # default: single_quotes # enforce double quotes inside string interpolations Style/StringLiteralsInInterpolation: - EnforcedStyle: double_quotes + EnforcedStyle: double_quotes # default: single_quotes # allow only brackets, not %i or %I Style/SymbolArray: - EnforcedStyle: brackets - MinSize: 1 + EnforcedStyle: brackets # default: percent + MinSize: 1 # default: 2 # allow only brackets, not %w or %W Style/WordArray: - EnforcedStyle: brackets - MinSize: 1 + EnforcedStyle: brackets # default: percent + MinSize: 1 # default: 2 # END Style -- GitLab