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