From 6e356a14af03370423ae0021b8ed1141260fb1a0 Mon Sep 17 00:00:00 2001 From: Amauri Bizerra <10775696+extern-c@users.noreply.github.com> Date: Sun, 17 May 2026 03:09:51 +0000 Subject: [PATCH] Fix Style/SymbolArray Rubocop offense Signed-off-by: Amauri Bizerra <10775696+extern-c@users.noreply.github.com> --- .rubocop_todo.yml | 7 ------- Rakefile | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 5f5b288..43d5654 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -107,13 +107,6 @@ Style/StringLiterals: - 'lib/bom_component.rb' - 'lib/bom_helpers.rb' -# Offense count: 1 -# This cop supports safe autocorrection (--autocorrect). -# Configuration parameters: MinSize. -# SupportedStyles: percent, brackets -Style/SymbolArray: - EnforcedStyle: brackets - # Offense count: 7 # This cop supports safe autocorrection (--autocorrect). # Configuration parameters: AllowHeredoc, AllowURI, AllowQualifiedName, URISchemes, IgnoreCopDirectives, AllowedPatterns, SplitStrings. diff --git a/Rakefile b/Rakefile index a176eaf..0658ed3 100644 --- a/Rakefile +++ b/Rakefile @@ -28,7 +28,7 @@ RuboCop::RakeTask.new # coverage information reported by `simplecov` can be skewed when a `coverage` # directory is already present. desc "Run the whole test suite." -task test: [:clobber, :spec, :cucumber] +task test: %i[clobber spec cucumber] # Default Task task default: :test