Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 727 Bytes

File metadata and controls

27 lines (16 loc) · 727 Bytes

ember/template-deprecated-render-helper

🔧 This rule is automatically fixable by the --fix CLI option.

HBS Only: This rule applies to classic .hbs template files only (loose mode). It is not relevant for gjs/gts files (strict mode), where these patterns cannot occur.

Disallows the {{render}} helper which is deprecated.

Examples

Incorrect:

{{render 'user'}}

Correct:

<User />

References