🔧 This rule is automatically fixable by the --fix CLI option.
Enforces consistent quote style in templates.
This is a stylistic rule that is disabled by default.
This rule enforces consistent usage of double or single quotes in templates.
This rule takes one option, a string which must be either "double" or "single". The default is "double".
Examples of correct code for this rule:
<template>
<div class="foo"></div>
</template><template>
<MyComponent @arg="value" />
</template>