From 97ec6e97cd78866b94604aea3d0353382deb285b Mon Sep 17 00:00:00 2001 From: BaboonKing Date: Wed, 20 Nov 2024 20:24:54 +0800 Subject: [PATCH] chore: disable lint fix and format on save file --- .vscode/settings.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 5b8dbbd9..0801279d 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,8 +1,10 @@ { "editor.codeActionsOnSave": { - "source.fixAll": "explicit" + // Wiating Fix all Code to enable + // "source.fixAll": "explicit" }, - "editor.formatOnSave": true, + // Wiating format all Code to enable + // "editor.formatOnSave": true, "editor.defaultFormatter": "esbenp.prettier-vscode", "typescript.tsdk": "node_modules/typescript/lib" }