Examples of incorrect code for this rule
class Component extends ComponentBase {
componentWillMount() {
this._isMounted = true;
}
}
Examples of correct code for this rule
class Component extends ComponentBase {
componentWillMount() {
super.componentWillMount();
}
}