Skip to content

Files

Latest commit

 

History

History
13 lines (8 loc) · 415 Bytes

no-unnecessary-override.md

File metadata and controls

13 lines (8 loc) · 415 Bytes

Pattern: Unnecessary override

Issue: -

Description

Do not write a method that only calls super() on the parent method with the same arguments. You can safely remove methods like this and Javascript will correctly dispatch the method to the parent object.

Further Reading