-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdatasets.code-workspace
55 lines (55 loc) · 1.22 KB
/
datasets.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.rulers": [80, 120],
"editor.insertSpaces": true,
"editor.tabSize": 4,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.defaultFormatter": "ms-python.python",
"files.watcherExclude": {
"**/venv/**": true,
"**/build/**": true,
"**/dist/**": true,
"**/coverage/**": true
},
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"python.formatting.provider": "black",
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
},
"extensions": {
"recommendations": [
"ms-python.python",
"sonarsource.sonarlint-vscode"
]
},
"launch": {
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: FastAPI",
"type": "python",
"request": "launch",
"module": "uvicorn",
"args": [
"datasets.api:app"
],
"jinja": true
}
]
}
}