From 829c596b7c104692863421e0716427e0276dc8a0 Mon Sep 17 00:00:00 2001 From: oskvr37 Date: Mon, 27 Jan 2025 21:41:25 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20ruff=20configuration=20in=20.vsc?= =?UTF-8?q?ode?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/settings.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index e0009a2..ba9a9b5 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,9 @@ { - "python.analysis.typeCheckingMode": "basic" -} \ No newline at end of file + "python.analysis.typeCheckingMode": "basic", + "[python]": { + "editor.codeActionsOnSave": { + "source.organizeImports.ruff": "explicit", + } + }, + "ruff.lineLength": 80, +}