I have to configure the linter rules, so that it can detect space in html between "{{ value }}"
for example, this would be ok
<div>{{ value }}</div>
and the error would be wrong
<div>{{value}}</div>
I use: eslint-plugin-vue: 5.2.2
What rule is responsible for it?