coffeelint-ensure-super
v0.0.2
Published
Ensure super is called in certain methods.
Maintainers
Readme
Ensure Super
A CoffeeLint rule that ensures that super is called.
Description
This rule ensures that classes that inherit from a set of defined base classes
and override a set of defined methods call super in their implementations of
those methods. A good example of this is making sure that all Backbone
views that override View::remove call super, since otherwise they will leak
resources, and may not actually be removed from the DOM.
By default no rules are defined - these must be configured (see below).
Installation
npm install coffeelint-ensure-superUsage
Add the following configuration to coffeelint.json:
"ensure_super": {
"module": "coffeelint-ensure-super",
"check": {
"SuperClassName": ["method1", "method2"],
"AnotherSuperClass": ["methodX", "methodY"]
}
}Configuration
The check property defines which methods must call super. It is a
mapping from the parent class name to the list of the methods that must
call super when overriden. For example, a suitable configuration for
ensuring all Backbone views call super on removal would be:
"ensure_super": {
"module": "coffeelint-ensure-super",
"check": {
"View": ["remove"]
}
}