We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Hey!
When I add aria-hidden="true" to the element I would expect this rule to ignore this particular control element. It seems not be the case.
aria-hidden="true"
Example
// rule config
'jsx-a11y/label-has-associated-control': [ 'error', { assert: 'either', } ],
<input type="hidden" aria-hidden="true" />
This fails.
Thanks!