role-has-required-aria-props
April 25, 2018 ยท View on GitHub
Elements with ARIA roles must have all required attributes for that role.
References
Rule details
This rule takes no arguments.
Succeed
<span role="checkbox" aria-checked="false" aria-labelledby="foo" tabindex="0"></span>
Fail
<span role="checkbox" aria-labelledby="foo" tabindex="0"></span>