Sha256: 7b5a1fdda3477442d128c79f8276f9387e97b9d38eca5d43726fb84b74db6455

Contents?: true

Size: 1.05 KB

Versions: 6808

Compression:

Stored size: 1.05 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.'.freeze

        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)
        end
      end
    end
  end
end

Version data entries

6,808 entries across 6,804 versions & 24 rubygems

Version Path
talon_one-2.0.0 vendor/bundle/ruby/2.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/safe_navigation_with_empty.rb
dadapush_client-1.0.1 vendor/bundle/ruby/2.3.0/gems/rubocop-0.66.0/lib/rubocop/cop/lint/safe_navigation_with_empty.rb
rubocop-0.68.1 lib/rubocop/cop/lint/safe_navigation_with_empty.rb
rubocop-0.68.0 lib/rubocop/cop/lint/safe_navigation_with_empty.rb
rubocop-0.67.2 lib/rubocop/cop/lint/safe_navigation_with_empty.rb
rubocop-0.67.1 lib/rubocop/cop/lint/safe_navigation_with_empty.rb
rubocop-0.67.0 lib/rubocop/cop/lint/safe_navigation_with_empty.rb
rubocop-0.66.0 lib/rubocop/cop/lint/safe_navigation_with_empty.rb