vue/name-property-casing
enforce specific casing for the name property in Vue components
- 🚫 This rule was removed in eslint-plugin-vue v9.0.0 and replaced by vue/component-definition-name-casing rule.
📖 Rule Details
This rule aims at enforcing the style for the name
property casing for consistency purposes.
🔧 Options
json
{
"vue/name-property-casing": ["error", "PascalCase" | "kebab-case"]
}
"PascalCase"
(default) ... Enforce thename
property to Pascal case."kebab-case"
... Enforce thename
property to kebab case.
"kebab-case"
📚 Further Reading
🚀 Version
This rule was introduced in eslint-plugin-vue v3.8.0