# ember/template-no-unnecessary-curly-strings
💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).
Strings need not be wrapped in curly braces (mustache expressions).
## Examples
This rule **forbids** the following:
```gjs
```
```gjs
{{"Hello"}}
```
This rule **allows** the following:
```gjs
```
```gjs
Hello
```
## References
- [Handlebars expressions](https://handlebarsjs.com/guide/expressions.html)