Sha256: 6c425f7fcc8a6991c8c2fca84e46a53b1f048e15b4651b233d33f2faeab063e5

Contents?: true

Size: 1.62 KB

Versions: 35

Compression:

Stored size: 1.62 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop checks for lambdas and procs that always return nil,
      # which can be replaced with an empty lambda or proc instead.
      #
      # @example
      #   # bad
      #   -> { nil }
      #
      #   lambda do
      #     next nil
      #   end
      #
      #   proc { nil }
      #
      #   Proc.new do
      #     break nil
      #   end
      #
      #   # good
      #   -> {}
      #
      #   lambda do
      #   end
      #
      #   -> (x) { nil if x }
      #
      #   proc {}
      #
      #   Proc.new { nil if x }
      #
      class NilLambda < Base
        extend AutoCorrector
        include RangeHelp

        MSG = 'Use an empty %<type>s instead of always returning nil.'

        # @!method nil_return?(node)
        def_node_matcher :nil_return?, <<~PATTERN
          { ({return next break} nil) (nil) }
        PATTERN

        def on_block(node)
          return unless node.lambda? || node.proc?
          return unless nil_return?(node.body)

          message = format(MSG, type: node.lambda? ? 'lambda' : 'proc')
          add_offense(node, message: message) do |corrector|
            autocorrect(corrector, node)
          end
        end

        private

        def autocorrect(corrector, node)
          range = if node.single_line?
                    range_with_surrounding_space(range: node.body.loc.expression)
                  else
                    range_by_whole_lines(node.body.loc.expression, include_final_newline: true)
                  end

          corrector.remove(range)
        end
      end
    end
  end
end

Version data entries

35 entries across 35 versions & 5 rubygems

Version Path
rubocop-1.22.0 lib/rubocop/cop/style/nil_lambda.rb
rubocop-1.21.0 lib/rubocop/cop/style/nil_lambda.rb
rubocop-1.20.0 lib/rubocop/cop/style/nil_lambda.rb
rubocop-1.19.1 lib/rubocop/cop/style/nil_lambda.rb
rails_mini_profiler-0.2.0 vendor/bundle/ruby/3.0.0/gems/rubocop-1.18.3/lib/rubocop/cop/style/nil_lambda.rb
rubocop-1.19.0 lib/rubocop/cop/style/nil_lambda.rb
rubocop-1.18.4 lib/rubocop/cop/style/nil_lambda.rb
rubocop-1.18.3 lib/rubocop/cop/style/nil_lambda.rb
rubocop-1.18.2 lib/rubocop/cop/style/nil_lambda.rb
rubocop-1.18.1 lib/rubocop/cop/style/nil_lambda.rb
rubocop-1.18.0 lib/rubocop/cop/style/nil_lambda.rb
rubocop-1.17.0 lib/rubocop/cop/style/nil_lambda.rb
rubocop-1.16.1 lib/rubocop/cop/style/nil_lambda.rb
rubocop-1.16.0 lib/rubocop/cop/style/nil_lambda.rb
rubocop-1.15.0 lib/rubocop/cop/style/nil_lambda.rb