Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 589 Bytes

File metadata and controls

25 lines (15 loc) · 589 Bytes

ember/template-deprecated-render-helper

💼 This rule is enabled in the following configs: strict-gjs, strict-gts.

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

Examples

Incorrect:

<template>{{render "user"}}</template>

Correct:

<template><User /></template>

References