From 8f752e1d65fbe4f9e4147afff63872f230a693d7 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Sun, 28 May 2023 19:16:13 +0200 Subject: [PATCH] fix with ruff on save --- .vscode/settings.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 85d0e5a..5f5c041 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,5 +4,9 @@ "files.insertFinalNewline": true, "files.trimFinalNewlines": true, "files.trimTrailingWhitespace": true, - "python.formatting.provider": "black" + "python.formatting.provider": "black", + "editor.codeActionsOnSave": { + "source.fixAll": false, + "source.organizeImports": true + } }