💼 This rule is enabled in the following configs: strict-gjs, strict-gts.
Disallows usage of modifiers from @ember/render-modifiers.
The modifiers from @ember/render-modifiers ({{did-insert}}, {{did-update}}, {{will-destroy}}) should be replaced with alternatives from ember-render-helpers or other modern approaches.
Examples of incorrect code for this rule:
<template>
<div {{did-insert this.setup}}></div>
</template><template>
<div {{did-update this.update}}></div>
</template><template>
<div {{will-destroy this.cleanup}}></div>
</template>Examples of correct code for this rule:
<template>
<div {{on "click" this.handleClick}}></div>
</template>