Update vscode settings
This commit is contained in:
parent
8c299f0041
commit
53216269cb
3 changed files with 14 additions and 5 deletions
5
.vscode/extensions.json
vendored
Normal file
5
.vscode/extensions.json
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"recommendations": [
|
||||||
|
"ms-python.vscode-pylance"
|
||||||
|
]
|
||||||
|
}
|
7
.vscode/launch.json
vendored
7
.vscode/launch.json
vendored
|
@ -6,19 +6,19 @@
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
"name": "Gisaf FastAPI",
|
"name": "Gisaf FastAPI",
|
||||||
"type": "python",
|
"type": "debugpy",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"module": "uvicorn",
|
"module": "uvicorn",
|
||||||
"args": [
|
"args": [
|
||||||
"src.gisaf.application:app",
|
"src.gisaf.application:app",
|
||||||
"--port=5003",
|
"--port=5000",
|
||||||
"--reload"
|
"--reload"
|
||||||
],
|
],
|
||||||
"justMyCode": false
|
"justMyCode": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gisaf scheduler FastAPI",
|
"name": "Gisaf scheduler FastAPI",
|
||||||
"type": "python",
|
"type": "debugpy",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"module": "uvicorn",
|
"module": "uvicorn",
|
||||||
"args": [
|
"args": [
|
||||||
|
@ -28,6 +28,5 @@
|
||||||
],
|
],
|
||||||
"justMyCode": false
|
"justMyCode": false
|
||||||
}
|
}
|
||||||
|
|
||||||
]
|
]
|
||||||
}
|
}
|
7
.vscode/settings.json
vendored
7
.vscode/settings.json
vendored
|
@ -5,5 +5,10 @@
|
||||||
"python.autoComplete.extraPaths": [
|
"python.autoComplete.extraPaths": [
|
||||||
"${workspaceFolder}/__pypackages__/3.11/lib"
|
"${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"
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue