Skip to content

Commit 5669943

Browse files
committed
Install and config eslint-plugin-vuejs-accessibility
1 parent 48539af commit 5669943

File tree

3 files changed

+2350
-664
lines changed

3 files changed

+2350
-664
lines changed

.eslintrc.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,17 @@ module.exports = {
55
node: true
66
},
77
plugins: [
8-
'vue-a11y'
8+
'vuejs-accessibility'
99
],
1010
extends: [
1111
'plugin:vue/recommended',
1212
'@vue/standard',
13-
'plugin:vue-a11y/base'
13+
'plugin:vuejs-accessibility/recommended'
1414
],
1515
parserOptions: {
1616
parser: 'babel-eslint'
1717
},
1818
rules: {
19-
'no-console': 'off',
20-
'vue-a11y/click-events-have-key-events': 'off'
19+
'no-console': 'off'
2120
}
2221
}

0 commit comments

Comments
 (0)