Skip to content

Commit 25c55c5

Browse files
committed
chore: update [email protected]
1 parent 217258b commit 25c55c5

File tree

22 files changed

+566
-1020
lines changed

22 files changed

+566
-1020
lines changed

.eslintrc.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module.exports = {
3737
"eslint:recommended",
3838
"@vue/typescript/recommended",
3939
"@vue/prettier",
40-
"@vue/prettier/@typescript-eslint"
40+
"@vue/eslint-config-typescript"
4141
],
4242
parser: "vue-eslint-parser",
4343
parserOptions: {
@@ -50,6 +50,10 @@ module.exports = {
5050
}
5151
},
5252
rules: {
53+
"vue/no-v-html": "off",
54+
"vue/require-default-prop": "off",
55+
"vue/require-explicit-emits": "off",
56+
"vue/multi-word-component-names": "off",
5357
"@typescript-eslint/no-explicit-any": "off", // any
5458
"no-debugger": "off",
5559
"@typescript-eslint/explicit-module-boundary-types": "off", // setup()

.prettierrc.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
module.exports = {
22
bracketSpacing: true,
3-
jsxBracketSameLine: true,
43
singleQuote: false,
5-
arrowParens: 'avoid',
6-
trailingComma: 'none'
4+
arrowParens: "avoid",
5+
trailingComma: "none"
76
};

package.json

+18-14
Original file line numberDiff line numberDiff line change
@@ -82,33 +82,37 @@
8282
"@types/node": "14.14.14",
8383
"@types/nprogress": "0.2.0",
8484
"@types/qs": "^6.9.7",
85-
"@typescript-eslint/eslint-plugin": "4.31.0",
86-
"@typescript-eslint/parser": "4.31.0",
85+
"@typescript-eslint/eslint-plugin": "^5.10.2",
86+
"@typescript-eslint/parser": "^5.10.2",
8787
"@vitejs/plugin-legacy": "^1.6.4",
8888
"@vitejs/plugin-vue": "^2.1.0",
8989
"@vitejs/plugin-vue-jsx": "^1.3.3",
90-
"@vue/eslint-config-prettier": "6.0.0",
91-
"@vue/eslint-config-typescript": "7.0.0",
90+
"@vue/eslint-config-prettier": "^7.0.0",
91+
"@vue/eslint-config-typescript": "^10.0.0",
9292
"@zougt/vite-plugin-theme-preprocessor": "^1.4.4",
9393
"autoprefixer": "^10.4.2",
9494
"cross-env": "7.0.3",
95-
"eslint": "7.30.0",
96-
"eslint-plugin-prettier": "3.4.0",
97-
"eslint-plugin-vue": "7.17.0",
98-
"husky": "7.0.2",
95+
"eslint": "^8.8.0",
96+
"eslint-plugin-prettier": "^4.0.0",
97+
"eslint-plugin-vue": "^8.4.1",
98+
"husky": "^7.0.4",
9999
"lint-staged": "11.1.2",
100100
"postcss": "8.2.6",
101+
"postcss-html": "^1.3.0",
101102
"postcss-import": "14.0.0",
102-
"prettier": "2.3.2",
103+
"postcss-scss": "^4.0.3",
104+
"prettier": "^2.5.1",
103105
"pretty-quick": "3.1.1",
104106
"rimraf": "3.0.2",
105107
"rollup-plugin-visualizer": "^5.5.4",
106108
"sass": "^1.49.7",
107109
"sass-loader": "^12.4.0",
108-
"stylelint": "13.13.1",
109-
"stylelint-config-prettier": "8.0.2",
110-
"stylelint-config-standard": "22.0.0",
111-
"stylelint-order": "4.1.0",
110+
"stylelint": "^14.3.0",
111+
"stylelint-config-html": "^1.0.0",
112+
"stylelint-config-prettier": "^9.0.3",
113+
"stylelint-config-recommended": "^6.0.0",
114+
"stylelint-config-standard": "^24.0.0",
115+
"stylelint-order": "^5.0.0",
112116
"typescript": "^4.5.5",
113117
"unplugin-element-plus": "^0.2.0",
114118
"vite": "^2.7.13",
@@ -118,7 +122,7 @@
118122
"vite-plugin-style-import": "^1.4.1",
119123
"vite-plugin-windicss": "^1.6.1",
120124
"vite-svg-loader": "2.2.0",
121-
"vue-eslint-parser": "7.10.0",
125+
"vue-eslint-parser": "^8.2.0",
122126
"windicss": "^3.4.3"
123127
},
124128
"repository": "[email protected]:xiaoxian521/vue-pure-admin.git",

0 commit comments

Comments
 (0)