From bf9585ac42218e7bf01fa3b57c4ff59ca1221500 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Fri, 23 Dec 2022 02:23:23 +0000 Subject: [PATCH] Update RuboCop to 1.41 (#36919). git-svn-id: https://svn.redmine.org/redmine/trunk@21998 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- .rubocop.yml | 4 ++++ Gemfile | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.rubocop.yml b/.rubocop.yml index aa6ea904b..89cdc8d73 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -233,6 +233,10 @@ Style/NegatedIfElseCondition: Style/RaiseArgs: Enabled: false +Style/RedundantConstantBase: + Exclude: + - 'config/environments/production.rb' + Style/Semicolon: Enabled: false diff --git a/Gemfile b/Gemfile index 79275f83a..46db0d614 100644 --- a/Gemfile +++ b/Gemfile @@ -103,7 +103,7 @@ group :test do gem "selenium-webdriver", "~> 3.142.7" gem 'webdrivers', '4.6.1', require: false # RuboCop - gem 'rubocop', '~> 1.39.0' + gem 'rubocop', '~> 1.41.1' gem 'rubocop-performance', '~> 1.15.0' gem 'rubocop-rails', '~> 2.17.2' end