Autofix Rubocop Style/IdenticalConditionalBranches (#24322)
This commit is contained in:
		
							parent
							
								
									718cdb0286
								
							
						
					
					
						commit
						2a0d2453b0
					
				
					 2 changed files with 2 additions and 9 deletions
				
			
		| 
						 | 
				
			
			@ -2218,11 +2218,6 @@ Style/HashTransformValues:
 | 
			
		|||
    - 'app/serializers/rest/web_push_subscription_serializer.rb'
 | 
			
		||||
    - 'app/services/import_service.rb'
 | 
			
		||||
 | 
			
		||||
# This cop supports unsafe autocorrection (--autocorrect-all).
 | 
			
		||||
Style/IdenticalConditionalBranches:
 | 
			
		||||
  Exclude:
 | 
			
		||||
    - 'config/initializers/content_security_policy.rb'
 | 
			
		||||
 | 
			
		||||
# This cop supports safe autocorrection (--autocorrect).
 | 
			
		||||
Style/IfUnlessModifier:
 | 
			
		||||
  Exclude:
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -27,19 +27,17 @@ Rails.application.config.content_security_policy do |p|
 | 
			
		|||
  p.frame_src       :self, :https
 | 
			
		||||
  p.manifest_src    :self, assets_host
 | 
			
		||||
  p.form_action     :self
 | 
			
		||||
  p.child_src       :self, :blob, assets_host
 | 
			
		||||
  p.worker_src      :self, :blob, assets_host
 | 
			
		||||
 | 
			
		||||
  if Rails.env.development?
 | 
			
		||||
    webpacker_urls = %w(ws http).map { |protocol| "#{protocol}#{Webpacker.dev_server.https? ? 's' : ''}://#{Webpacker.dev_server.host_with_port}" }
 | 
			
		||||
 | 
			
		||||
    p.connect_src :self, :data, :blob, assets_host, media_host, Rails.configuration.x.streaming_api_base_url, *webpacker_urls
 | 
			
		||||
    p.script_src  :self, :unsafe_inline, :unsafe_eval, assets_host
 | 
			
		||||
    p.child_src   :self, :blob, assets_host
 | 
			
		||||
    p.worker_src  :self, :blob, assets_host
 | 
			
		||||
  else
 | 
			
		||||
    p.connect_src :self, :data, :blob, assets_host, media_host, Rails.configuration.x.streaming_api_base_url
 | 
			
		||||
    p.script_src  :self, assets_host, "'wasm-unsafe-eval'"
 | 
			
		||||
    p.child_src   :self, :blob, assets_host
 | 
			
		||||
    p.worker_src  :self, :blob, assets_host
 | 
			
		||||
  end
 | 
			
		||||
end
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue