From 90a0c1c13a4a15cd1a5fe9a77abcfd3746da60b2 Mon Sep 17 00:00:00 2001 From: Charles Oliver Nutter Date: Thu, 6 Jun 2024 17:20:02 -0500 Subject: [PATCH] Add Rubocop exclude for pattern matching Syntax in here has changed since 3.0 but updating Rubocop to a newer Ruby causes other lines to be rejected. --- .rubocop.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index be32ce890..0c26612a7 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -169,6 +169,10 @@ Lint/Debugger: Lint/Loop: Enabled: false +Lint/Syntax: + Exclude: + - 'language/pattern_matching_spec.rb' + Style/BlockComments: Enabled: true