vscode settings
Browse files- .vscode/launch.json +13 -0
- .vscode/settings.json +1 -0
.vscode/launch.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"version": "0.2.0",
|
| 3 |
+
"configurations": [
|
| 4 |
+
{
|
| 5 |
+
"name": "Debug App",
|
| 6 |
+
"type": "debugpy",
|
| 7 |
+
"request": "launch",
|
| 8 |
+
"program": "${workspaceFolder}/app.py",
|
| 9 |
+
"console": "integratedTerminal",
|
| 10 |
+
"subProcess": true
|
| 11 |
+
}
|
| 12 |
+
]
|
| 13 |
+
}
|
.vscode/settings.json
CHANGED
|
@@ -34,6 +34,7 @@
|
|
| 34 |
}
|
| 35 |
},
|
| 36 |
"ruff.format.args": ["--line-length", "110"],
|
|
|
|
| 37 |
|
| 38 |
"[json]": {
|
| 39 |
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
|
|
| 34 |
}
|
| 35 |
},
|
| 36 |
"ruff.format.args": ["--line-length", "110"],
|
| 37 |
+
"python.analysis.extraPaths": ["./src", "./"],
|
| 38 |
|
| 39 |
"[json]": {
|
| 40 |
"editor.defaultFormatter": "esbenp.prettier-vscode",
|