From fb624cc368ca25d7b202856b4a80558cac0ad2ac Mon Sep 17 00:00:00 2001 From: Phantom <59059173+EurFelux@users.noreply.github.com> Date: Wed, 2 Jul 2025 19:29:08 +0800 Subject: [PATCH] chore: Disable auto-organize imports on save (#7744) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit chore: 禁用保存时自动整理导入功能 --- .vscode/settings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 47640bff0..ef4dc3954 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,7 +2,7 @@ "editor.formatOnSave": true, "editor.codeActionsOnSave": { "source.fixAll.eslint": "explicit", - "source.organizeImports": "explicit" + "source.organizeImports": "never" }, "search.exclude": { "**/dist/**": true,