@@ -15,10 +15,12 @@ import labelHasFor from "./rules/label-has-for";
15
15
import mediaHasCaption from "./rules/media-has-caption" ;
16
16
import mouseEventsHaveKeyEvents from "./rules/mouse-events-have-key-events" ;
17
17
import noAccessKey from "./rules/no-access-key" ;
18
+ import noAriaHiddenOnFocusable from "./rules/no-aria-hidden-on-focusable" ;
18
19
import noAutofocus from "./rules/no-autofocus" ;
19
20
import noDistractingElements from "./rules/no-distracting-elements" ;
20
21
import noOnchange from "./rules/no-onchange" ;
21
22
import noRedundantRoles from "./rules/no-redundant-roles" ;
23
+ import noRolePresentationOnFocusable from "./rules/no-role-presentation-on-focusable" ;
22
24
import noStaticElementInteractions from "./rules/no-static-element-interactions" ;
23
25
import roleHasRequiredAriaProps from "./rules/role-has-required-aria-props" ;
24
26
import tabindexNoPositive from "./rules/tabindex-no-positive" ;
@@ -42,10 +44,12 @@ const rules = {
42
44
"media-has-caption" : mediaHasCaption ,
43
45
"mouse-events-have-key-events" : mouseEventsHaveKeyEvents ,
44
46
"no-access-key" : noAccessKey ,
47
+ "no-aria-hidden-on-focusable" : noAriaHiddenOnFocusable ,
45
48
"no-autofocus" : noAutofocus ,
46
49
"no-distracting-elements" : noDistractingElements ,
47
50
"no-onchange" : noOnchange ,
48
51
"no-redundant-roles" : noRedundantRoles ,
52
+ "no-role-presentation-on-focusable" : noRolePresentationOnFocusable ,
49
53
"no-static-element-interactions" : noStaticElementInteractions ,
50
54
"role-has-required-aria-props" : roleHasRequiredAriaProps ,
51
55
"tabindex-no-positive" : tabindexNoPositive
0 commit comments