Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 585 Bytes

File metadata and controls

25 lines (15 loc) · 585 Bytes

ember/template-deprecated-render-helper

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