Sha256: 59d74e8857d39dc5acc417b5aa23edde8508fc461b77bbfe35394124c8ce4292

Contents?: true

Size: 699 Bytes

Versions: 37

Compression:

Stored size: 699 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 < Base
        include Interpolation
        extend AutoCorrector

        MSG = 'Empty interpolation detected.'

        def on_interpolation(begin_node)
          return unless begin_node.children.empty?

          add_offense(begin_node) do |corrector|
            corrector.remove(begin_node.loc.expression)
          end
        end
      end
    end
  end
end

Version data entries

37 entries across 37 versions & 3 rubygems

Version Path
plaid-14.13.0 vendor/bundle/ruby/3.0.0/gems/rubocop-0.91.1/lib/rubocop/cop/lint/empty_interpolation.rb
plaid-14.12.1 vendor/bundle/ruby/3.0.0/gems/rubocop-0.91.1/lib/rubocop/cop/lint/empty_interpolation.rb
plaid-14.12.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/lint/empty_interpolation.rb
plaid-14.11.1 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/lint/empty_interpolation.rb
plaid-14.10.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/lint/empty_interpolation.rb
plaid-14.7.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.12.1 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.12.0 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.11.0 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.10.0 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.9.1 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.9.0 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.8.1 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.8.0 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.7.0 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.6.1 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.6.0 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.5.2 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.5.1 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.5.0 lib/rubocop/cop/lint/empty_interpolation.rb