warning
vue/attribute-hyphenationForce attributes to be hyphenated rather than camelCase
Examples
❌ Incorrect
<template>
<my-component :customAttribute="true"></my-component>
</template>
✅ Correct
<template>
<my-component :custom-attribute="true"></my-component>
</template>