Disallows using ...attributes on HTML elements.
The ...attributes syntax should only be used on component elements, not on HTML elements, to avoid confusion and maintain clear component boundaries.
Examples of incorrect code for this rule:
<template>
<div ...attributes></div>
</template><template>
<span ...attributes></span>
</template>Examples of correct code for this rule:
<template>
<MyComponent ...attributes />
</template><template>
<div class="wrapper"></div>
</template>