EsLint Plugin Lit A11y: aria-attr-valid-value
ARIA state and property values must be valid.
Rule Details
Examples of incorrect code for this rule:
html` <span aria-hidden="yes">foo</span> `;
Examples of correct code for this rule:
html` <span aria-hidden="true">foo</span> `;