You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 31, 2023. It is now read-only.
// KO classCodeViewextendsGtk.Widget{constructor(){console.log('cool');super();// This class calls super(), but the class extends from a non-constructor.}}
// OK (removed the dot in Gtk.Widget)classCodeViewextendsGtkWidget{constructor(){console.log('cool');super();}}
Expected result
Extending an object property shouldn't trigger noInvalidConstructorSuper
Code of Conduct
I agree to follow Rome's Code of Conduct
The text was updated successfully, but these errors were encountered:
I think it's a regression in 12.1
Environment information
What happened?
The rule lint/correctness/noInvalidConstructorSuper triggers when extending an object property, for example:
Expected result
Extending an object property shouldn't trigger noInvalidConstructorSuper
Code of Conduct
The text was updated successfully, but these errors were encountered: