Class: RuboCop::Cop::StimulusReflex::Base Abstract
- Inherits:
-
Base
- Object
- Base
- RuboCop::Cop::StimulusReflex::Base
- Defined in:
- lib/rubocop/cop/stimulus_reflex/base.rb
Overview
This class is abstract.
parent class to StimulusReflex cops
Direct Known Subclasses
Class Method Summary collapse
-
.inherited(subclass) ⇒ Object
Invoke the original inherited hook so our cops are recognized.
Class Method Details
.inherited(subclass) ⇒ Object
Invoke the original inherited hook so our cops are recognized
11 12 13 |
# File 'lib/rubocop/cop/stimulus_reflex/base.rb', line 11 def self.inherited(subclass) # rubocop:disable Lint/MissingSuper RuboCop::Cop::Base.inherited(subclass) end |