class RuboCop::Cop::Lint::SafeNavigationWithEmpty

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?

Constants

MSG

Public Instance Methods

on_if(node) click to toggle source
# File lib/rubocop/cop/lint/safe_navigation_with_empty.rb, line 30
def on_if(node)
  return unless safe_navigation_empty_in_conditional?(node)

  add_offense(node)
end