From 9894584501c5d39aac9ab7e7de22e1a5e562afd3 Mon Sep 17 00:00:00 2001 From: Alex Beeken Date: Fri, 14 Jun 2024 13:07:59 -0700 Subject: [PATCH] Update .rubocop.yml (#43) --- .rubocop.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index fd43928..657a13f 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -211,6 +211,12 @@ Style/SignalException: Style/MethodCalledOnDoEndBlock: Enabled: true + +# OpenStruct shouldn't be used anymore due to performance +# degradation on ruby 3.2+ +Style/OpenStructUse: + Enabled: true + # Enforcing the names of variables? To single letter ones? Just no. Style/SingleLineBlockParams: Enabled: false