# ember/template-no-yield-only
💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
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.
## Examples
This rule **forbids** the following:
```gjs
{{yield}}
```
```gjs
{{yield}}
```
This rule **allows** the following:
```gjs
{{yield something}}
```
```gjs
{{yield}}
```
## Migration
- delete all files that are flagged by this rule
## References
-