Class: RuboCop::Cop::Cop

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

Instance Method Summary collapse

Instance Method Details

#message(_node = nil) ⇒ Object



6
7
8
9
10
11
12
# File 'lib/rubocop/cop/cop.rb', line 6

def message(_node = nil)
  if self.class.const_defined?(:YAYOI_MSG)
    self.class::YAYOI_MSG
  else
    self.class::MSG
  end
end