From 8d7f91dccf5b4715643e13b5a4385e109b7434f2 Mon Sep 17 00:00:00 2001 From: Azir-11 <2075125282@qq.com> Date: Wed, 13 Aug 2025 10:10:10 +0800 Subject: [PATCH] chore(other): update the ESLint validation configuration to support more file types. --- .vscode/settings.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 2c70ecf9..ee081a60 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,7 +4,18 @@ "source.organizeImports": "never" }, "editor.formatOnSave": false, - "eslint.validate": ["html", "css", "scss", "json", "jsonc"], + "eslint.validate": [ + "html", + "css", + "scss", + "json", + "jsonc", + "javascript", + "javascriptreact", + "typescript", + "typescriptreact", + "vue" + ], "i18n-ally.displayLanguage": "zh-cn", "i18n-ally.enabledParsers": ["ts"], "i18n-ally.enabledFrameworks": ["vue"],