I'm currently on the lookout for an ESlint rule that can detect and remove instances of this
being used before props or data.
For instance:
<template>
<div v-if="this.foo"></div>
</template>
In an ideal scenario, the linter would flag cases like this.foo
instead of just foo
. Have you come across a rule that addresses this issue? I've been searching for it diligently in the past few days but unfortunately haven't had any success.