# san/no-textarea-mustache
disallow mustaches in
<textarea>
- ⚙️ This rule is included in all of
"plugin:san/essential"
,"plugin:san/strongly-recommended"
and"plugin:san/recommended"
.
# 📖 Rule Details
This rule reports mustaches in <textarea>
.
<template>
<!-- ✓ GOOD -->
<textarea value="{=message=}" />
<!-- ✗ BAD -->
<textarea>{{ message }}</textarea>
</template>
# 🔧 Options
Nothing.