chore: update

This commit is contained in:
Anthony Fu 2020-06-04 12:49:19 +08:00
parent 214c0be029
commit ca6b89bd88
4 changed files with 1378 additions and 930 deletions

2274
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -10,21 +10,21 @@
"release": "lerna publish --conventional-commits --graph-type all -y"
},
"devDependencies": {
"@antfu/eslint-config": "^0.2.6",
"eslint": "^7.0.0",
"lerna": "^3.18.3",
"typescript": "^3.7.1-rc"
"@antfu/eslint-config": "^0.2.11",
"eslint": "^7.1.0",
"lerna": "^3.22.0",
"typescript": "^3.9.3"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "3.0.2",
"@typescript-eslint/parser": "^3.0.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"@typescript-eslint/eslint-plugin": "3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-nuxt": "1.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^20.0.0",
"eslint-plugin-unicorn": "^20.1.0",
"eslint-plugin-vue": "6.2.2"
}
}

View File

@ -8,6 +8,7 @@ module.exports = {
'standard',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:unicorn/recommended',
],
plugins: [
'unicorn',

View File

@ -22,5 +22,10 @@ module.exports = {
'@typescript-eslint/no-parameter-properties': 'off',
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/ban-ts-ignore': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/ban-types': 'off',
}
}