Default casing is set to always
'vue/attribute-hyphenation': [2, 'always'|'never']
👍 Examples of correct code`:
<template>
<foo my-prop="prop">
<a onClick="return false"></a>
</foo>
</template>
👎 Examples of incorrect code`:
<template>
<foo myProp="prop">
<a onClick="return false"></a>
</foo>
</template>
👍 Examples of correct code`:
<template>
<foo myProp="prop">
<a onClick="return false"></a>
</foo>
</template>
👎 Examples of incorrect code`:
<template>
<foo my-prop="prop">
<a onClick="return false"></a>
</foo>
</template>