Class: RuboCop::Cop::Style::DisallowSafeNavigation

Inherits:
Base
  • Object
show all
Defined in:
lib/rubocop/cop/style/disallow_safe_navigation.rb

Constant Summary collapse

MSG =
'Do not use safe navigation (`&.`). Use explicit conditionals instead.'

Instance Method Summary collapse

Instance Method Details

#on_csend(node) ⇒ Object



11
12
13
# File 'lib/rubocop/cop/style/disallow_safe_navigation.rb', line 11

def on_csend(node)
  add_offense(node)
end