Skip to content

Commit dec7fee

Browse files
committed
Update the recommendation
1 parent 1d678e0 commit dec7fee

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/index.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
module.exports = {
22
rules: {
3+
"accessible-emoji": require("./rules/accessible-emoji"),
34
"anchor-has-content": require("./rules/anchor-has-content"),
45
"aria-props": require("./rules/aria-props"),
56
"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"),
69
"heading-has-content": require("./rules/heading-has-content"),
710
"iframe-has-title": require("./rules/iframe-has-title"),
811
"no-access-key": require("./rules/no-access-key"),
@@ -23,9 +26,12 @@ module.exports = {
2326
}
2427
},
2528
rules: {
29+
"vue-accessibility/accessible-emoji": "error",
2630
"vue-accessibility/anchor-has-content": "error",
2731
"vue-accessibility/aria-props": "error",
2832
"vue-accessibility/aria-role": "error",
33+
"vue-accessibility/aria-unsupported-elements": "error",
34+
"vue-accessibility/click-events-have-key-events": "error",
2935
"vue-accessibility/heading-has-content": "error",
3036
"vue-accessibility/iframe-has-title": "error",
3137
"vue-accessibility/no-access-key": "error",

0 commit comments

Comments
 (0)