-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Open
Labels
Description
Many users forget to call super
from initialize
, which can lead to tricky bugs if the superclass needs to initialize its own state.
Perhaps this should be in the style guide?
I'm not sure if it should be a hard failure, since classes that extend Object or BasicObject or a few other core types don't technically need to invoke super
, but the safest pattern would be to always do so.