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>

Accessibility guidelines

Resources