Skip to content

Commit 69e13f6

Browse files
committed
🚨 Run prettier to fix no-redundant-roles.ts
1 parent 1353572 commit 69e13f6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: src/rules/no-redundant-roles.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ import {
1313
const exceptions: { [type: string]: string[] } = { nav: ["navigation"] };
1414

1515
function getImplicitRoleSet(node: AST.VElement): any[] | null {
16-
const matchingRoles = elementRoles.entries()
16+
const matchingRoles = elementRoles
17+
.entries()
1718
.filter(([consept]) => {
1819
return matchesElementRole(node, consept);
1920
})

0 commit comments

Comments
 (0)