Skip to main content

no-boolean-attr-value

info

🔧 This rule supports auto-fix with the --fix option.

Warn when it specified any value to the boolean attribute.

❌ Examples of incorrect code for this rule

<input type="text" required="required" />

✅ Examples of correct code for this rule

<input type="text" required />

Interface

{
"no-boolean-attr-value": boolean
}

Default Severity

warning