Skip to content

Commit

Permalink
🚨 Run prettier to fix no-redundant-roles.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
vhoyer committed Jul 17, 2023
1 parent 1353572 commit 69e13f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/rules/no-redundant-roles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ import {
const exceptions: { [type: string]: string[] } = { nav: ["navigation"] };

function getImplicitRoleSet(node: AST.VElement): any[] | null {
const matchingRoles = elementRoles.entries()
const matchingRoles = elementRoles
.entries()
.filter(([consept]) => {
return matchesElementRole(node, consept);
})
Expand Down

0 comments on commit 69e13f6

Please sign in to comment.