Sha256: a795376fcce56e5255e2ce997df64d2b1823f06c7cb164a3384df51c06001088

Contents?: true

Size: 674 Bytes

Versions: 38

Compression:

Stored size: 674 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) { |corrector| corrector.remove(begin_node.loc.expression) }
        end
      end
    end
  end
end

Version data entries

38 entries across 38 versions & 6 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/lint/empty_interpolation.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.29.1 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.29.0 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.28.2 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.28.1 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.28.0 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.27.0 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.26.1 lib/rubocop/cop/lint/empty_interpolation.rb
op_connect-0.1.2 vendor/bundle/ruby/3.1.0/gems/rubocop-1.26.0/lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.26.0 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.25.1 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.25.0 lib/rubocop/cop/lint/empty_interpolation.rb
phillipug-foodie-0.1.0 .vendor/ruby/3.0.0/gems/rubocop-1.24.0/lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.24.1 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.24.0 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.23.0 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.22.3 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.22.2 lib/rubocop/cop/lint/empty_interpolation.rb
rubocop-1.22.1 lib/rubocop/cop/lint/empty_interpolation.rb