Autofix Rubocop Style/RedundantArgument (#23798)
This commit is contained in:
		
							parent
							
								
									69c0672fc4
								
							
						
					
					
						commit
						0717d1b058
					
				
					 4 changed files with 5 additions and 14 deletions
				
			
		| 
						 | 
				
			
			@ -2050,15 +2050,6 @@ Style/OptionalBooleanParameter:
 | 
			
		|||
    - 'app/workers/unfollow_follow_worker.rb'
 | 
			
		||||
    - 'lib/mastodon/redis_config.rb'
 | 
			
		||||
 | 
			
		||||
# Offense count: 5
 | 
			
		||||
# This cop supports unsafe autocorrection (--autocorrect-all).
 | 
			
		||||
# Configuration parameters: Methods.
 | 
			
		||||
Style/RedundantArgument:
 | 
			
		||||
  Exclude:
 | 
			
		||||
    - 'app/controllers/concerns/signature_verification.rb'
 | 
			
		||||
    - 'app/helpers/application_helper.rb'
 | 
			
		||||
    - 'lib/tasks/emojis.rake'
 | 
			
		||||
 | 
			
		||||
# Offense count: 16
 | 
			
		||||
# This cop supports safe autocorrection (--autocorrect).
 | 
			
		||||
Style/RedundantRegexpCharacterClass:
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -138,7 +138,7 @@ module SignatureVerification
 | 
			
		|||
  end
 | 
			
		||||
 | 
			
		||||
  def signed_headers
 | 
			
		||||
    signature_params.fetch('headers', signature_algorithm == 'hs2019' ? '(created)' : 'date').downcase.split(' ')
 | 
			
		||||
    signature_params.fetch('headers', signature_algorithm == 'hs2019' ? '(created)' : 'date').downcase.split
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def verify_signature_strength!
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -112,7 +112,7 @@ module ApplicationHelper
 | 
			
		|||
  def fa_icon(icon, attributes = {})
 | 
			
		||||
    class_names = attributes[:class]&.split(' ') || []
 | 
			
		||||
    class_names << 'fa'
 | 
			
		||||
    class_names += icon.split(' ').map { |cl| "fa-#{cl}" }
 | 
			
		||||
    class_names += icon.split.map { |cl| "fa-#{cl}" }
 | 
			
		||||
 | 
			
		||||
    content_tag(:i, nil, attributes.merge(class: class_names.join(' ')))
 | 
			
		||||
  end
 | 
			
		||||
| 
						 | 
				
			
			@ -164,7 +164,7 @@ module ApplicationHelper
 | 
			
		|||
  end
 | 
			
		||||
 | 
			
		||||
  def body_classes
 | 
			
		||||
    output = (@body_classes || '').split(' ')
 | 
			
		||||
    output = (@body_classes || '').split
 | 
			
		||||
    output << "theme-#{current_theme.parameterize}"
 | 
			
		||||
    output << 'system-font' if current_account&.user&.setting_system_font_ui
 | 
			
		||||
    output << (current_account&.user&.setting_reduce_motion ? 'reduce-motion' : 'no-reduce-motion')
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -6,7 +6,7 @@ def gen_border(codepoint, color)
 | 
			
		|||
  doc = File.open(input) { |f| Nokogiri::XML(f) }
 | 
			
		||||
  svg = doc.at_css('svg')
 | 
			
		||||
  if svg.key?('viewBox')
 | 
			
		||||
    view_box = svg['viewBox'].split(' ').map(&:to_i)
 | 
			
		||||
    view_box = svg['viewBox'].split.map(&:to_i)
 | 
			
		||||
    view_box[0] -= 2
 | 
			
		||||
    view_box[1] -= 2
 | 
			
		||||
    view_box[2] += 4
 | 
			
		||||
| 
						 | 
				
			
			@ -36,7 +36,7 @@ end
 | 
			
		|||
 | 
			
		||||
def codepoints_to_unicode(codepoints)
 | 
			
		||||
  if codepoints.include?(' ')
 | 
			
		||||
    codepoints.split(' ').map(&:hex).pack('U*')
 | 
			
		||||
    codepoints.split.map(&:hex).pack('U*')
 | 
			
		||||
  else
 | 
			
		||||
    [codepoints.hex].pack('U')
 | 
			
		||||
  end
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue