Class: RuboCop::Cop::CableReady::Base Abstract

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

Overview

This class is abstract.

parent class to CableReady cops

Class Method Summary collapse

Class Method Details

.inherited(subclass) ⇒ Object

Invoke the original inherited hook so our cops are recognized



11
12
13
# File 'lib/rubocop/cop/cable_ready/base.rb', line 11

def self.inherited(subclass) # rubocop:disable Lint/MissingSuper
  RuboCop::Cop::Base.inherited(subclass)
end