Sha256: 95d4c198564bfefa949a7516cd5135cd6bafe90489278c7f6e948ed4a1cff00c

Contents?: true

Size: 733 Bytes

Versions: 6909

Compression:

Stored size: 733 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Lint
      # This cop checks for empty interpolation.
      #
      # @example
      #
      #   # bad
      #
      #   "result is #{}"
      #
      # @example
      #
      #   # good
      #
      #   "result is #{some_result}"
      class EmptyInterpolation < Cop
        MSG = 'Empty interpolation detected.'.freeze

        def on_dstr(node)
          node.each_child_node(:begin) do |begin_node|
            add_offense(begin_node) if begin_node.children.empty?
          end
        end

        def autocorrect(node)
          lambda do |collector|
            collector.remove(node.loc.expression)
          end
        end
      end
    end
  end
end

Version data entries

6,909 entries across 6,903 versions & 26 rubygems

Version Path
ory-client-0.0.1.alpha121 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_interpolation.rb
ory-client-0.0.1.alpha120 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_interpolation.rb
ory-client-0.0.1.alpha119 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_interpolation.rb
ory-client-0.0.1.alpha118 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_interpolation.rb
ory-client-0.0.1.alpha117 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_interpolation.rb
ory-client-0.0.1.alpha116 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_interpolation.rb
ory-client-0.0.1.alpha115 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_interpolation.rb
primary_connect_proto-0.6.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_interpolation.rb
ory-keto-client-0.8.0.alpha2 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_interpolation.rb
ory-client-0.0.1.alpha113 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_interpolation.rb
ory-client-0.0.1.alpha112 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_interpolation.rb
ory-client-0.0.1.alpha111 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_interpolation.rb
ory-client-0.0.1.alpha110 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_interpolation.rb
ory-client-0.0.1.alpha109 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_interpolation.rb
avalara_sdk-2.4.26 vendor/bundle/ruby/2.6.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_interpolation.rb
ory-client-0.0.1.alpha108 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_interpolation.rb
ory-oathkeeper-client-0.38.23.beta1 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_interpolation.rb
ory-oathkeeper-client-0.38.22.beta1 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_interpolation.rb
ory-client-0.0.1.alpha107 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_interpolation.rb
ory-hydra-client-1.11.7 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/empty_interpolation.rb