From aa603e06c33829970005ed90992a49dbd20b1db9 Mon Sep 17 00:00:00 2001 From: Gil Desmarais Date: Thu, 30 Dec 2021 12:01:33 +0100 Subject: [PATCH] style(rubocop): disable Performance/StringIdentifierArgument cop it breaks the code. related issue: https://github.com/rubocop/rubocop-performance/issues/278 --- .rubocop.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index f3094a3..d1386d6 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -9,6 +9,9 @@ AllCops: Exclude: - vendor/**/* +Performance/StringIdentifierArgument: + Enabled: false + Metrics/BlockLength: Exclude: - "spec/**/*_spec.rb"