From 9763799a8c0a15f5d0a4a77c42d9b467f03f6383 Mon Sep 17 00:00:00 2001 From: taitus Date: Mon, 16 Jun 2025 11:42:37 +0200 Subject: [PATCH] Add Style/EmptyStringInsideInterpolation Rubocop 1.76 rule This rule was introduced in RuboCop 1.76.0 to avoid unnecessary interpolation of empty strings. --- .rubocop.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index 828a5227d..3175750f5 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -739,6 +739,9 @@ Style/ComparableBetween: Style/DigChain: Enabled: true +Style/EmptyStringInsideInterpolation: + Enabled: true + Style/FileRead: Enabled: true