From 23d01673a881d2cf50b89498c81fff4b3583df55 Mon Sep 17 00:00:00 2001 From: Matt Jankowski Date: Fri, 31 May 2024 12:06:50 -0400 Subject: [PATCH] Disable `Rails/ActionFilter` cop History in standard-rails: - Disabled in initial rules import - Enabled in bulk rails rule enable commit This cop is both disabled by default and deprecated in rubocop-rails: https://github.com/rubocop/rubocop-rails/pull/1149 Rationale is that the cop is only relevant to Rails versions so early they are no longer supported by rubocop-rails. --- config/base.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/base.yml b/config/base.yml index 72c5cc6..c8ec7b5 100644 --- a/config/base.yml +++ b/config/base.yml @@ -37,7 +37,7 @@ Rails/ActionControllerTestCase: Enabled: false Rails/ActionFilter: - Enabled: true + Enabled: false Rails/ActionOrder: Enabled: false