# ember/template-require-valid-named-block-naming-format 💼 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). Require named blocks to use a valid naming format (`camelCase` or `kebab-case`). The default naming format used is `camelCase`. ## Examples This rule **forbids** the following when the `camelCase` naming format is enabled: ```gjs ``` This rule **allows** the following when the `camelCase` naming format is enabled: ```gjs ``` This rule **forbids** the following when the `kebab-case` naming format is enabled: ```gjs ``` This rule **allows** the following when the `kebab-case` naming format is enabled: ```gjs ``` ## Configuration - boolean -- `true` enables the rule with the default `camelCase` format and `false` disables it - string -- `"camelCase"` requires the use of the `camelCase` naming format, and `"kebab-case"` requires the use of the `kebab-case` naming format ## References - [Naming convention (programming)]()