Sha256: fa3cb6cefd6f4dce2e307d13c63f7c24ee7f63819c9df5e4594d7ba480cefde8

Contents?: true

Size: 1.34 KB

Versions: 3

Compression:

Stored size: 1.34 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 < Base
        extend AutoCorrector

        MSG = 'Avoid calling `empty?` with the safe navigation operator ' \
          'in conditionals.'

        # @!method safe_navigation_empty_in_conditional?(node)
        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)

          condition = node.condition

          add_offense(condition) do |corrector|
            receiver = condition.receiver.source

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rubocop-1.12.1 lib/rubocop/cop/lint/safe_navigation_with_empty.rb
rubocop-1.12.0 lib/rubocop/cop/lint/safe_navigation_with_empty.rb
rubocop-1.11.0 lib/rubocop/cop/lint/safe_navigation_with_empty.rb