# ember/template-quotes
🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).
Enforce the consistent use of either double or single quotes.
## Examples
Enforce either:
```gjs
test
{{my-helper 'hello there'}}
```
or:
```gjs
test
{{my-helper "hello there"}}
```
## Configuration
The following values are valid configuration:
- string -- `"double"` requires the use of double quotes wherever possible, `"single"` requires the use of single quotes wherever possible
- object -- `{ curlies: "single"|"double"|false, html: "single"|"double"|false }` - requires different quotes for Handlebars and HTML syntax
For the object config, the properties `curlies` and `html` can be passed one of the following values: `"single"`, `"double"`, or `false`. If `false` is passed to a property, it will be as if this rule is turned off for that specific syntax.
With the config `{ curlies: false, html: "double" }`, this would be **forbidden**:
```gjs
```
However, this would be **allowed**:
```gjs
{{component "foo"}}
{{test x='y'}}
```
## Related Rules
- [quotes](https://eslint.org/docs/rules/quotes) from eslint
## References
- [Google style guide/quotes](https://google.github.io/styleguide/htmlcssguide.html#HTML_Quotation_Marks)