diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..3fa9780 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,5 @@ +{ + "recommendations": [ + "ms-python.vscode-pylance" + ] +} \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json index ef5582b..85f280e 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,19 +6,19 @@ "configurations": [ { "name": "Gisaf FastAPI", - "type": "python", + "type": "debugpy", "request": "launch", "module": "uvicorn", "args": [ "src.gisaf.application:app", - "--port=5003", + "--port=5000", "--reload" ], "justMyCode": false }, { "name": "Gisaf scheduler FastAPI", - "type": "python", + "type": "debugpy", "request": "launch", "module": "uvicorn", "args": [ @@ -28,6 +28,5 @@ ], "justMyCode": false } - ] } \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index d7314f5..a410ce9 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -5,5 +5,10 @@ "python.autoComplete.extraPaths": [ "${workspaceFolder}/__pypackages__/3.11/lib" ], - "editor.defaultFormatter": "charliermarsh.ruff" + "editor.defaultFormatter": "charliermarsh.ruff", + "[jsonc]": { + "editor.defaultFormatter": "vscode.json-language-features" + }, + "python.analysis.autoImportCompletions": true, + "python.analysis.typeCheckingMode": "basic" } \ No newline at end of file