Prevents using .on() in favour of component's lifecycle hooks.
The order of execution for on() is not deterministic.
export default Component.extend({
// BAD
abc: on('didInsertElement', function () { /* custom logic */ }),
// GOOD
didInsertElement() { /* custom logic */ }
});