**Please describe what the rule should do:** This rule should enforce consistent tag names for imported components. **What category should the rule belong to?** Enforces code style (layout) **Provide 2-3 code examples that this rule should warn about:** Valid example ```vue import IconPicker from "./IconPicker.vue"; export default defineComponent({ name: "app", components: { "icon-picker": IconPicker ``` Invalid example ```vue import IconPicker from "./IconPicker.vue"; export default defineComponent({ name: "app", components: { "some-inconsistent-name": IconPicker ```