From 9cbc639d0f13cb08b41a5ade3a3d6b66fe0d09df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mose=20M=C3=BCller?= Date: Mon, 18 Dec 2023 12:03:08 +0100 Subject: [PATCH] updates vscode settings --- .vscode/extensions.json | 3 ++- .vscode/launch.json | 2 +- .vscode/settings.json | 6 +++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 9f0fa45..01167a6 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -2,6 +2,7 @@ "recommendations": [ "charliermarsh.ruff", "ms-python.python", - "ms-python.vscode-pylance" + "ms-python.vscode-pylance", + "ms-python.mypy-type-checker" ] } \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json index 86c0b1e..173fba5 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,7 +6,7 @@ "type": "python", "request": "launch", "module": "foo", - "justMyCode": true, + "justMyCode": false, "env": { "ENVIRONMENT": "development" } diff --git a/.vscode/settings.json b/.vscode/settings.json index 459159b..495519c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -8,8 +8,8 @@ "editor.tabSize": 4, "editor.detectIndentation": false, "editor.codeActionsOnSave": { - "source.organizeImports": true, - "source.fixAll": true + "source.organizeImports": "explicit", + "source.fixAll": "explicit" } }, "[yaml]": { @@ -23,7 +23,7 @@ "editor.formatOnType": false, "editor.formatOnSaveMode": "file", "editor.codeActionsOnSave": { - "source.fixAll.eslint": true + "source.fixAll.eslint": "explicit" } } } \ No newline at end of file