jsx-a11y/aria-proptypes
October 27, 2022 ยท View on GitHub
๐ผ This rule is enabled in the following configs: โ๏ธ recommended, ๐ strict.
ARIA state and property values must be valid.
Rule details
This rule takes no arguments.
Succeed
<!-- Good: the aria-hidden state is of type true/false -->
<span aria-hidden="true">foo</span>
Fail
<!-- Bad: the aria-hidden state is of type true/false -->
<span aria-hidden="yes">foo</span>