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.
1 parent 1353572 commit 69e13f6Copy full SHA for 69e13f6
src/rules/no-redundant-roles.ts
@@ -13,7 +13,8 @@ import {
13
const exceptions: { [type: string]: string[] } = { nav: ["navigation"] };
14
15
function getImplicitRoleSet(node: AST.VElement): any[] | null {
16
- const matchingRoles = elementRoles.entries()
+ const matchingRoles = elementRoles
17
+ .entries()
18
.filter(([consept]) => {
19
return matchesElementRole(node, consept);
20
})
0 commit comments