From 36fd29f27729d01a615aff743ba184b50a76ae3f Mon Sep 17 00:00:00 2001 From: Ming Di Leom <2809763-curben@users.noreply.gitlab.com> Date: Fri, 26 Jan 2024 02:08:42 +0000 Subject: [PATCH] chore(vscode): code action https://code.visualstudio.com/updates/v1_85#_code-actions-on-save-and-auto --- .vscode/settings.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index dab17f2..5bebbf6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,14 +3,13 @@ "files.trimTrailingWhitespace": true, "files.insertFinalNewline": true, "files.trimFinalNewlines": true, - "python.formatting.provider": "none", "[python]": { "editor.defaultFormatter": "ms-python.black-formatter", "editor.formatOnSave": true, "editor.tabSize": 4, "editor.codeActionsOnSave": { - "source.fixAll": true, - "source.organizeImports": true + "source.fixAll": "explicit", + "source.organizeImports": "explicit" } }, "[markdown]": {