From 58a99a0fb569dbe9e3b279bfcd922a877051189d Mon Sep 17 00:00:00 2001 From: danial Date: Tue, 18 Nov 2025 12:47:01 +0800 Subject: [PATCH] =?UTF-8?q?chore(vscode):=20=E9=85=8D=E7=BD=AE=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E5=85=B3=E8=81=94=E8=AE=BE=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加csv文件扩展名的语言关联 - 为cjson文件配置jsonc语言支持 - 设置wxss文件关联为css语言模式 - 将wxs文件识别为javascript语言 - 明确.js文件的语言类型为javascript - 新增new文件的语言关联为cpp --- .vscode/settings.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..bfd6744 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,10 @@ +{ + "files.associations": { + "*.csv": "csv (colon)", + "*.cjson": "jsonc", + "*.wxss": "css", + "*.wxs": "javascript", + "*.js": "javascript", + "new": "cpp" + } +} \ No newline at end of file