💼 This rule is enabled in the 📋 template-lint-migration config.
Templates that only contain a single {{yield}} instruction are not required
and increase the total template payload size.
This rule warns about templates that only contain a single {{yield}}
instruction.
This rule forbids the following:
<template>
{{yield}}
</template><template>
{{yield}}
</template>This rule allows the following:
<template>
{{yield something}}
</template><template>
<div>{{yield}}</div>
</template>- delete all files that are flagged by this rule