# ember/template-modifier-name-case
🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).
> **HBS Only**: This rule applies to classic `.hbs` template files only (loose mode). It is not relevant for `gjs`/`gts` files (strict mode), where these patterns cannot occur.
Requires dasherized names for modifiers.
Modifiers should use dasherized names when being invoked, not camelCase. This is a stylistic rule that will prevent you from using camelCase modifiers, requiring you to use dasherized modifier names instead.
## Examples
This rule **forbids** the following:
```gjs
```
```gjs
```
This rule **allows** the following:
```gjs
```
```gjs
```
## See Also
- [named-functions-in-promises](named-functions-in-promises.md)
## References
- [Template syntax guide - Modifiers](https://guides.emberjs.com/release/components/template-syntax/#toc_modifiers)