no-aria-on-presentational-children
Warns when ARIA attributes are set on descendants of roles with presentational children.
❌ Examples of incorrect code for this rule
<div role="img"><span aria-label="text"></span></div>
✅ Examples of correct code for this rule
<div role="img"><span>text</span></div>
Interface
{
"no-aria-on-presentational-children": boolean
}
Default Severity
warning