# ember/template-no-unnecessary-curly-parens
💼 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).
Disallow unnecessary parentheses enclosing statements in curlies. When invoking a helper with arguments, the outer parentheses around the entire expression are unnecessary.
## Examples
This rule **forbids** the following:
```gjs
{{(concat "a" "b")}}
```
```gjs
{{(helper a="b")}}
```
This rule **allows** the following:
```gjs
{{foo}}
{{(foo)}}
{{concat "a" "b"}}
{{concat (capitalize "foo") "-bar"}}
```
## References
- Ember's [Helper Functions](https://guides.emberjs.com/release/components/helper-functions/) guide