Skip to content

Commit c3cee27

Browse files
authored
Merge pull request #223 from little3201/develop
实现pkce认证
2 parents 0e4574e + be41ff5 commit c3cee27

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+1504
-1902
lines changed

.vscode/extensions.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"recommendations": [
3+
"Vue.volar",
34
"dbaeumer.vscode-eslint",
45
"editorconfig.editorconfig",
56
"wayou.vscode-todo-highlight"

eslint.config.js

Lines changed: 4 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import js from '@eslint/js'
22
import globals from 'globals'
33
import pluginVue from 'eslint-plugin-vue'
44
import pluginQuasar from '@quasar/app-vite/eslint'
5-
import vueTsEslintConfig from '@vue/eslint-config-typescript'
5+
import { defineConfigWithVueTs, vueTsConfigs } from '@vue/eslint-config-typescript'
66

7-
export default [
7+
export default defineConfigWithVueTs(
88
{
99
/**
1010
* Ignore the following files.
@@ -33,22 +33,7 @@ export default [
3333
* -> Above, plus rules to enforce subjective community defaults to ensure consistency.
3434
*/
3535
...pluginVue.configs['flat/essential'],
36-
37-
// https://github.com/vuejs/eslint-config-typescript
38-
...vueTsEslintConfig({
39-
// Optional: extend additional configurations from typescript-eslint'.
40-
// Supports all the configurations in
41-
// https://typescript-eslint.io/users/configs#recommended-configurations
42-
extends: [
43-
// By default, only the recommended rules are enabled.
44-
'recommended'
45-
// You can also manually enable the stylistic rules.
46-
// "stylistic",
47-
48-
// Other utility configurations, such as 'eslintRecommended', (note that it's in camelCase)
49-
// are also extendable here. But we don't recommend using them directly.
50-
]
51-
}),
36+
vueTsConfigs.recommended,
5237

5338
{
5439
languageOptions: {
@@ -88,4 +73,4 @@ export default [
8873
}
8974
}
9075
}
91-
]
76+
)

package.json

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,30 @@
1313
"build": "quasar build"
1414
},
1515
"dependencies": {
16-
"@quasar/extras": "^1.16.15",
16+
"@quasar/extras": "^1.16.17",
1717
"apexcharts": "^3.54.1",
18-
"axios": "^1.7.9",
19-
"highlight.js": "^11.10.0",
20-
"pinia": "^2.3.0",
21-
"quasar": "^2.17.5",
18+
"axios": "^1.8.4",
19+
"highlight.js": "^11.11.1",
20+
"pinia": "^2.3.1",
21+
"quasar": "^2.18.1",
2222
"vue": "^3.5.13",
23-
"vue-i18n": "^10.0.5",
23+
"vue-i18n": "^11.1.2",
2424
"vue-router": "^4.5.0"
2525
},
2626
"devDependencies": {
27-
"@eslint/js": "^9.14.0",
28-
"@intlify/unplugin-vue-i18n": "^2.0.0",
27+
"@eslint/js": "^9.23.0",
2928
"@lottiefiles/dotlottie-web": "^0.38.2",
30-
"@quasar/app-vite": "^2.0.4",
31-
"@types/node": "^20.5.9",
32-
"@vue/eslint-config-typescript": "^14.1.3",
33-
"autoprefixer": "^10.4.20",
34-
"eslint": "^9.14.0",
35-
"eslint-plugin-vue": "^9.30.0",
36-
"globals": "^15.12.0",
37-
"msw": "^2.7.0",
29+
"@quasar/app-vite": "^2.2.0",
30+
"@types/node": "^20.17.28",
31+
"@vue/eslint-config-typescript": "^14.5.0",
32+
"autoprefixer": "^10.4.21",
33+
"eslint": "^9.23.0",
34+
"eslint-plugin-vue": "^9.33.0",
35+
"globals": "^15.15.0",
36+
"msw": "^2.7.3",
3837
"typescript": "~5.6.3",
3938
"vite-plugin-checker": "^0.8.0",
40-
"vue-tsc": "^2.1.10"
39+
"vue-tsc": "^2.2.8"
4140
},
4241
"msw": {
4342
"workerDirectory": [

0 commit comments

Comments
 (0)