Sha256: b96f8869bb2816764bc011f314bb36938f96ddb3ea580307ad5bc1d79f601d77

Contents?: true

Size: 1.1 KB

Versions: 6777

Compression:

Stored size: 1.1 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop checks for pipes for empty block parameters. Pipes for empty
      # block parameters do not cause syntax errors, but they are redundant.
      #
      # @example
      #   # bad
      #   a do ||
      #     do_something
      #   end
      #
      #   # bad
      #   a { || do_something }
      #
      #   # good
      #   a do
      #   end
      #
      #   # good
      #   a { do_something }
      class EmptyBlockParameter < Cop
        include EmptyParameter
        include RangeHelp

        MSG = 'Omit pipes for the empty block parameters.'.freeze

        def on_block(node)
          send_node = node.send_node
          check(node) unless send_node.send_type? && send_node.lambda_literal?
        end

        def autocorrect(node)
          lambda do |corrector|
            block = node.parent
            range = range_between(
              block.loc.begin.end_pos,
              node.loc.expression.end_pos
            )
            corrector.remove(range)
          end
        end
      end
    end
  end
end

Version data entries

6,777 entries across 6,771 versions & 24 rubygems

Version Path
rubocop-0.67.1 lib/rubocop/cop/style/empty_block_parameter.rb
rubocop-0.67.0 lib/rubocop/cop/style/empty_block_parameter.rb
rubocop-0.66.0 lib/rubocop/cop/style/empty_block_parameter.rb
rubocop-0.65.0 lib/rubocop/cop/style/empty_block_parameter.rb
rubocop-0.64.0 lib/rubocop/cop/style/empty_block_parameter.rb
rubocop-0.63.1 lib/rubocop/cop/style/empty_block_parameter.rb
rubocop-0.63.0 lib/rubocop/cop/style/empty_block_parameter.rb
rubocop-0.62.0 lib/rubocop/cop/style/empty_block_parameter.rb
rubocop-0.61.1 lib/rubocop/cop/style/empty_block_parameter.rb
rubocop-0.61.0 lib/rubocop/cop/style/empty_block_parameter.rb
config_gems_initialization_aim-0.1.4 vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/cop/style/empty_block_parameter.rb
config_gems_initialization_aim-0.1.4 vendor/bundle/ruby/2.5.0/gems/config_gems_initialization_aim-0.1.1/vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/cop/style/empty_block_parameter.rb
config_gems_initialization_aim-0.1.3 vendor/bundle/ruby/2.5.0/gems/config_gems_initialization_aim-0.1.1/vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/cop/style/empty_block_parameter.rb
config_gems_initialization_aim-0.1.3 vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/cop/style/empty_block_parameter.rb
rubocop-0.60.0 lib/rubocop/cop/style/empty_block_parameter.rb
rubocop-0.59.2 lib/rubocop/cop/style/empty_block_parameter.rb
rubocop-0.59.1 lib/rubocop/cop/style/empty_block_parameter.rb