Sha256: 3fa4d893de2cc4ae02d77f3d5849c7bfd4387ac67d76b526cf9cacdd0ddcdcb1

Contents?: true

Size: 1.26 KB

Versions: 4

Compression:

Stored size: 1.26 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Lint
      # This cop checks to make sure safe navigation isn't used with `empty?` in
      # a conditional.
      #
      # While the safe navigation operator is generally a good idea, when
      # checking `foo&.empty?` in a conditional, `foo` being `nil` will actually
      # do the opposite of what the author intends.
      #
      # @example
      #   # bad
      #   return if foo&.empty?
      #   return unless foo&.empty?
      #
      #   # good
      #   return if foo && foo.empty?
      #   return unless foo && foo.empty?
      #
      class SafeNavigationWithEmpty < Cop
        MSG = 'Avoid calling `empty?` with the safe navigation operator ' \
          'in conditionals.'

        def_node_matcher :safe_navigation_empty_in_conditional?, <<~PATTERN
          (if (csend (send ...) :empty?) ...)
        PATTERN

        def on_if(node)
          return unless safe_navigation_empty_in_conditional?(node)

          add_offense(node.condition)
        end

        def autocorrect(node)
          lambda do |corrector|
            receiver = node.receiver.source

            corrector.replace(node, "#{receiver} && #{receiver}.#{node.method_name}")
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
rubocop-0.88.0 lib/rubocop/cop/lint/safe_navigation_with_empty.rb
rbhint-0.87.1.rc1 lib/rubocop/cop/lint/safe_navigation_with_empty.rb
rubocop-0.87.1 lib/rubocop/cop/lint/safe_navigation_with_empty.rb
rubocop-0.87.0 lib/rubocop/cop/lint/safe_navigation_with_empty.rb