Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 868 Bytes

File metadata and controls

29 lines (17 loc) · 868 Bytes

ember/template-deprecated-render-helper

💼 This rule is enabled in the 📋 template-lint-migration config.

🔧 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