Closed
Description
Please describe what the rule should do:
I've seen code like <div :boolProp="true" />
often where you could use <div boolProp />
instead. I'd love to see a rule for that (plus an auto-fix option which should be fairly possible)
What category should the rule belong to?
- Enforces code style
- Warns about a potential error
- Suggests an alternate way of doing something
- Other (please specify:)
Provide 2-3 code examples that this rule should warn about:
<template>
<div>
<button :disabled="true">
</div>
</template>