Disallows usage of class attribute bindings.
This rule discourages the use of class attribute bindings with colon syntax. Use the {{class}} helper or individual classes instead for better readability and maintainability.
Examples of incorrect code for this rule:
<template>
<div class={{isActive:active:inactive}}></div>
</template><template>
<div class={{foo:bar}}></div>
</template>Examples of correct code for this rule:
<template>
<div class={{if this.isActive "active" "inactive"}}></div>
</template><template>
<div class={{this.myClass}}></div>
</template>