💼 This rule is enabled in the following configs: strict-gjs, strict-gts.
Disallows yielding to the "default" block explicitly.
Using {{yield to="default"}} is unnecessary. Simply use {{yield}} instead.
Examples of incorrect code for this rule:
<template>
{{yield to="default"}}
</template>Examples of correct code for this rule:
<template>
{{yield}}
</template><template>
{{yield to="inverse"}}
</template>