# 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>
Now loading...

# 🔧 Options

Nothing.

# 📚 Further Reading

# 🔍 Implementation

Last Updated: 10/26/2021, 7:23:11 AM