mirror of
https://github.com/redmine/redmine.git
synced 2025-11-02 19:36:00 +01:00
Update RuboCop to 1.75 (#41884).
git-svn-id: https://svn.redmine.org/redmine/trunk@23638 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# This configuration was generated by
|
# This configuration was generated by
|
||||||
# `rubocop --auto-gen-config --exclude-limit 20 --no-offense-counts --no-auto-gen-timestamp`
|
# `rubocop --auto-gen-config --exclude-limit 20 --no-offense-counts --no-auto-gen-timestamp`
|
||||||
# using RuboCop version 1.74.0.
|
# using RuboCop version 1.75.2.
|
||||||
# The point is for the user to remove these configuration records
|
# The point is for the user to remove these configuration records
|
||||||
# one by one as the offenses are removed from the code base.
|
# one by one as the offenses are removed from the code base.
|
||||||
# Note that changes in the inspected code, or installation of new
|
# Note that changes in the inspected code, or installation of new
|
||||||
@@ -289,8 +289,9 @@ Naming/MemoizedInstanceVariableName:
|
|||||||
- 'lib/redmine/field_format.rb'
|
- 'lib/redmine/field_format.rb'
|
||||||
- 'lib/redmine/search.rb'
|
- 'lib/redmine/search.rb'
|
||||||
|
|
||||||
# Configuration parameters: EnforcedStyle, AllowedPatterns.
|
# Configuration parameters: EnforcedStyle, AllowedPatterns, ForbiddenIdentifiers, ForbiddenPatterns.
|
||||||
# SupportedStyles: snake_case, camelCase
|
# SupportedStyles: snake_case, camelCase
|
||||||
|
# ForbiddenIdentifiers: __id__, __send__
|
||||||
Naming/MethodName:
|
Naming/MethodName:
|
||||||
Exclude:
|
Exclude:
|
||||||
- 'lib/redmine/export/pdf.rb'
|
- 'lib/redmine/export/pdf.rb'
|
||||||
@@ -987,7 +988,7 @@ Style/NestedTernaryOperator:
|
|||||||
- 'app/models/journal.rb'
|
- 'app/models/journal.rb'
|
||||||
|
|
||||||
# This cop supports safe autocorrection (--autocorrect).
|
# This cop supports safe autocorrection (--autocorrect).
|
||||||
# Configuration parameters: EnforcedStyle, MinBodyLength.
|
# Configuration parameters: EnforcedStyle, MinBodyLength, AllowConsecutiveConditionals.
|
||||||
# SupportedStyles: skip_modifier_ifs, always
|
# SupportedStyles: skip_modifier_ifs, always
|
||||||
Style/Next:
|
Style/Next:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|||||||
2
Gemfile
2
Gemfile
@@ -111,7 +111,7 @@ group :test do
|
|||||||
gem "capybara", ">= 3.39"
|
gem "capybara", ">= 3.39"
|
||||||
gem 'selenium-webdriver', '>= 4.11.0'
|
gem 'selenium-webdriver', '>= 4.11.0'
|
||||||
# RuboCop
|
# RuboCop
|
||||||
gem 'rubocop', '~> 1.74.0', require: false
|
gem 'rubocop', '~> 1.75.2', require: false
|
||||||
gem 'rubocop-performance', '~> 1.23.0', require: false
|
gem 'rubocop-performance', '~> 1.23.0', require: false
|
||||||
gem 'rubocop-rails', '~> 2.29.0', require: false
|
gem 'rubocop-rails', '~> 2.29.0', require: false
|
||||||
gem 'bundle-audit', require: false
|
gem 'bundle-audit', require: false
|
||||||
|
|||||||
@@ -1607,7 +1607,7 @@ module ApplicationHelper
|
|||||||
|
|
||||||
# Helper to render JSON in views
|
# Helper to render JSON in views
|
||||||
def raw_json(arg)
|
def raw_json(arg)
|
||||||
arg.to_json.to_s.gsub('/', '\/').html_safe
|
arg.to_json.gsub('/', '\/').html_safe
|
||||||
end
|
end
|
||||||
|
|
||||||
def back_url_hidden_field_tag
|
def back_url_hidden_field_tag
|
||||||
|
|||||||
Reference in New Issue
Block a user