From 4d1c9b92ab840e95820aefe9317743f86ae25490 Mon Sep 17 00:00:00 2001 From: Borg93 <48671678+Borg93@users.noreply.github.com> Date: Mon, 8 Apr 2024 12:13:21 +0200 Subject: [PATCH] Create setting.json --- .vscode/setting.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .vscode/setting.json diff --git a/.vscode/setting.json b/.vscode/setting.json new file mode 100644 index 0000000..2a4c745 --- /dev/null +++ b/.vscode/setting.json @@ -0,0 +1,19 @@ +{ + "python.testing.pytestArgs": [ + "tests" + ], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true, + "[python]": { + "editor.formatOnSave": true, + "editor.codeActionsOnSave": { + "source.fixAll": "explicit" + } + }, + "ruff.lint.args": [ + "--config=pyproject.toml" + ], + "ruff.organizeImports": true, + "ruff.fixAll": true, + "editor.formatOnSave": true +}