💼 This rule is enabled in the 📋 template-lint-migration config.
🔧 This rule is automatically fixable by the --fix CLI option.
Strings need not be wrapped in curly braces (mustache expressions).
This rule forbids the following:
<template><FooBar class={{"btn"}} /></template><template><FooBar class="btn">{{"Hello"}}</FooBar></template>This rule allows the following:
<template><FooBar class="btn" /></template><template><FooBar class="btn">Hello</FooBar></template>