Pattern: Unused variable definition
Issue: -
This rule report variable definitions of v-for
directives or scope attributes if those are not used.
<template>
<!-- ✓ GOOD -->
<ol v-for="i in 5">
<li>{{ i }}</li>
</ol>
<!-- ✗ BAD -->
<ol v-for="i in 5">
<li>item</li>
</ol>
</template>