fix(eslint-config): update extends rule

This commit is contained in:
chenjiahan 2020-08-21 14:16:18 +08:00
parent fbea243111
commit 9754a80597
2 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,8 @@
module.exports = { module.exports = {
extends: [ extends: [
'airbnb-base', 'airbnb-base',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended', 'plugin:@typescript-eslint/recommended',
'plugin:vue/recommended', 'plugin:vue/vue3-recommended',
'prettier', 'prettier',
'prettier/vue', 'prettier/vue',
], ],
@ -64,5 +63,6 @@ module.exports = {
'@typescript-eslint/no-empty-function': 'off', '@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-non-null-assertion': 'off', '@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
}, },
}; };

View File

@ -1,6 +1,6 @@
{ {
"name": "@vant/eslint-config", "name": "@vant/eslint-config",
"version": "3.0.0-alpha.0", "version": "3.0.0-alpha.1",
"description": "eslint config of vant", "description": "eslint config of vant",
"main": "index.js", "main": "index.js",
"publishConfig": { "publishConfig": {