From d97ca8c2ea97cc47e3e2b17f819e2c5515c36bff Mon Sep 17 00:00:00 2001 From: Matt McMahand Date: Thu, 5 Dec 2024 13:18:12 -0500 Subject: [PATCH] prefer double quotes --- 2024/ruby/.rubocop.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/2024/ruby/.rubocop.yml b/2024/ruby/.rubocop.yml index eb7e48e..6accd83 100644 --- a/2024/ruby/.rubocop.yml +++ b/2024/ruby/.rubocop.yml @@ -11,6 +11,9 @@ Style/Documentation: Enabled: false Style/FrozenStringLiteralComment: Enabled: false +Style/StringLiterals: + Enabled: true + EnforcedStyle: double_quotes Style/TrailingCommaInHashLiteral: Enabled: false Style/NumericPredicate: @@ -18,8 +21,6 @@ Style/NumericPredicate: Metrics/BlockLength: Exclude: - spec/**/* - - RSpec/ExampleLength: Max: 20 RSpec/MultipleExpectations: