-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.code-workspace
More file actions
33 lines (33 loc) · 865 Bytes
/
Copy pathproject.code-workspace
File metadata and controls
33 lines (33 loc) · 865 Bytes
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.showUnused": true,
"editor.formatOnSave": true,
"python.autoComplete.extraPaths": [
".venv/lib/"
],
"[python]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "charliermarsh.ruff",
},
"ruff.nativeServer": "on",
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.vscode-pylance",
"kevinrose.vsc-python-indent",
"charliermarsh.ruff",
"bierner.markdown-mermaid",
"anysphere.cursorpyright"
]
}
}