1
1
module . exports = {
2
2
rules : {
3
+ "accessible-emoji" : require ( "./rules/accessible-emoji" ) ,
3
4
"anchor-has-content" : require ( "./rules/anchor-has-content" ) ,
4
5
"aria-props" : require ( "./rules/aria-props" ) ,
5
6
"aria-role" : require ( "./rules/aria-role" ) ,
7
+ "aria-unsupported-elements" : require ( "./rules/aria-unsupported-elements" ) ,
8
+ "click-events-have-key-events" : require ( "./rules/click-events-have-key-events" ) ,
6
9
"heading-has-content" : require ( "./rules/heading-has-content" ) ,
7
10
"iframe-has-title" : require ( "./rules/iframe-has-title" ) ,
8
11
"no-access-key" : require ( "./rules/no-access-key" ) ,
@@ -23,9 +26,12 @@ module.exports = {
23
26
}
24
27
} ,
25
28
rules : {
29
+ "vue-accessibility/accessible-emoji" : "error" ,
26
30
"vue-accessibility/anchor-has-content" : "error" ,
27
31
"vue-accessibility/aria-props" : "error" ,
28
32
"vue-accessibility/aria-role" : "error" ,
33
+ "vue-accessibility/aria-unsupported-elements" : "error" ,
34
+ "vue-accessibility/click-events-have-key-events" : "error" ,
29
35
"vue-accessibility/heading-has-content" : "error" ,
30
36
"vue-accessibility/iframe-has-title" : "error" ,
31
37
"vue-accessibility/no-access-key" : "error" ,
0 commit comments