Skip to content

eslint/constructor-super Nursery

What it does

Require 'super()' calls in constructors.

Why is this bad?

Example

javascript
class A extends B {
  constructor() {}
}

References

Released under the MIT License.