From 0f76a32d24ded79e66abc70663256d876bba7bfa Mon Sep 17 00:00:00 2001 From: Matt Jankowski Date: Fri, 31 May 2024 12:04:49 -0400 Subject: [PATCH] Disable `Rails/UnusedIgnoredColumns` cop History in standard-rails: - Initially added during a rubocop-rails bump, as pending - Changed to enabled during the RailsConf vote changes Disabled on rubocop-rails side in release 2.25.0 - https://github.com/rubocop/rubocop-rails/releases/tag/v2.25.0 Rationale - https://github.com/rubocop/rubocop-rails/pull/1252 --- config/base.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/base.yml b/config/base.yml index 72c5cc6..baeda29 100644 --- a/config/base.yml +++ b/config/base.yml @@ -396,7 +396,7 @@ Rails/UnknownEnv: Enabled: false Rails/UnusedIgnoredColumns: - Enabled: true + Enabled: false Rails/UnusedRenderContent: Enabled: true