vue/component-definition-name-casing Style
What it does
Enforce specific casing for component definition names.
Why is this bad?
Defining component names without a consistent casing makes templates harder to read and harder to grep. Picking either PascalCase or kebab-case and sticking with it across the codebase removes a class of bikeshedding and search misses.
Examples
Examples of incorrect code for this rule (default PascalCase):
vue
<script>
export default {
name: "foo-bar",
};
</script>Examples of correct code for this rule (default PascalCase):
vue
<script>
export default {
name: "FooBar",
};
</script>Configuration
This rule accepts one of the following string values:
type: "PascalCase" | "kebab-case"
How to use
To enable this rule using the config file or in the CLI, you can use:
json
{
"plugins": ["vue"],
"rules": {
"vue/component-definition-name-casing": "error"
}
}ts
import { defineConfig } from "oxlint";
export default defineConfig({
plugins: ["vue"],
rules: {
"vue/component-definition-name-casing": "error",
},
});bash
oxlint --deny vue/component-definition-name-casing --vue-pluginVersion
This rule was added in vnext.
