Skip to content

vue/component-definition-name-casing

enforce specific casing for component definition name

  • ⚙️ This rule is included in all of "plugin:vue/vue3-strongly-recommended", "plugin:vue/strongly-recommended", "plugin:vue/vue3-recommended" and "plugin:vue/recommended".
  • 🔧 The --fix option on the command line can automatically fix some of the problems reported by this rule.

Define a style for component definition name casing for consistency purposes.

📖 Rule Details

This rule aims to warn the component definition names other than the configured casing.

🔧 Options

Default casing is set to PascalCase.

json
{
  "vue/component-definition-name-casing": ["error", "PascalCase" | "kebab-case"]
}
  • "PascalCase" (default) ... enforce component definition names to pascal case.
  • "kebab-case" ... enforce component definition names to kebab case.

"PascalCase" (default)

Now loading...
Now loading...
Now loading...

"kebab-case"

Now loading...
Now loading...
Now loading...

📚 Further Reading

🚀 Version

This rule was introduced in eslint-plugin-vue v7.0.0

🔍 Implementation