From 2ab2bba546e6676debb580578120786a281e600b Mon Sep 17 00:00:00 2001 From: "cnb.bApmeMoSgJA" Date: Tue, 25 Nov 2025 17:29:47 +0800 Subject: [PATCH] =?UTF-8?q?:wrench:=20=E6=B7=BB=E5=8A=A0vscode=E5=BC=80?= =?UTF-8?q?=E5=8F=91=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + .vscode/extensions.json | 11 +++++++++++ .vscode/settings.json | 26 ++++++++++++++++++++++++++ 3 files changed, 38 insertions(+) create mode 100644 .vscode/extensions.json create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index bcafa8f..e0e80c2 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,4 @@ pnpm-workspace.yaml /nuxt.run.xml /server_ nuxt.run.xml /output.tar.gz +.pnpm-store \ No newline at end of file diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..8de9745 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,11 @@ +{ + "recommendations": [ + "vue.volar", + "vue.vscode-typescript-vue-plugin", + "bradlc.vscode-tailwindcss", + "esbenp.prettier-vscode", + "dbaeumer.vscode-eslint", + "ms-vscode.vscode-typescript-next", + "nuxtr.nuxt-vscode-extentions" + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..ad5966a --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,26 @@ +{ + "typescript.preferences.includePackageJsonAutoImports": "on", + "typescript.suggest.autoImports": true, + "typescript.updateImportsOnFileMove.enabled": "always", + "vue.codeActions.enabled": true, + "vue.complete.casing.tags": "kebab", + "vue.complete.casing.props": "camel", + "vetur.validation.template": false, + "vetur.validation.script": false, + "vetur.validation.style": false, + "emmet.includeLanguages": { + "vue": "html" + }, + "files.associations": { + "*.vue": "vue" + }, + "editor.quickSuggestions": { + "strings": true + }, + "editor.tabSize": 2, + "editor.insertSpaces": true, + "editor.formatOnSave": true, + "editor.codeActionsOnSave": { + "source.fixAll.eslint": "explicit" + } +} \ No newline at end of file