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