no-this-before-super
Configuration
rslint.config.ts
Rule Details
Disallows use of this or super (for property access like super.foo) before calling super() in constructors of derived classes.
In a derived class (a class that extends another class), the constructor must call super() before accessing this or super for property access. Accessing this or super before super() has been called will throw a ReferenceError at runtime.
Examples of incorrect code for this rule:
Examples of correct code for this rule: