From c72e30b15d6eed6902a6d8eb2e460dd186cddd67 Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Thu, 25 May 2023 17:19:30 +0100 Subject: [PATCH] Disable ruff autofixes in vscode (#282) * Disable ruff autofixes in vscode * chore: auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- .vscode/settings.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index a793bbbc..d9cc730e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -5,6 +5,7 @@ "[python]": { "editor.codeActionsOnSave": { "source.fixAll": true, + "source.fixAll.ruff": false, "source.organizeImports": false } },