Closed
Description
Checklist
- I have tried restarting my IDE and the issue persists.
- I have read the FAQ and my problem is not listed.
Tell us about your environment
- ESLint version: 8.7.0
- eslint-plugin-vue version: 8.3.0
- Node version: 16
- Operating System: Mac
Please show your full configuration:
{
"vue/no-extra-parens": "error"
}
What did you do?
<style>
a {
color: v-bind(foo);
}
</style>
What did you expect to happen?
No error.
What actually happened?
Error.
[3:16]: Unnecessary parentheses around expression. ( vue/no-extra-parens )
Repository to reproduce this issue