From 98f8bbace3bec93a23fd9924f0a02c9d41c9cf69 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Tue, 16 Jan 2024 18:38:47 +0000 Subject: [PATCH] Disable Style/ArgumentsForwarding as it's badly broken in 1.60.0 https://github.com/rubocop/rubocop/issues/12618 https://github.com/rubocop/rubocop/issues/12619 https://github.com/rubocop/rubocop/issues/12620 https://github.com/rubocop/rubocop/issues/12621 --- .rubocop.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index 1e18afd83..ddfb63cae 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -68,6 +68,9 @@ Rails/SkipsModelValidations: - 'db/migrate/*.rb' - 'app/controllers/users_controller.rb' +Style/ArgumentsForwarding: + Enabled: false + Style/Documentation: Enabled: false -- 2.45.1