-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathval.code-workspace
39 lines (39 loc) · 938 Bytes
/
val.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
{
"folders": [
{
"name": "val",
"path": "."
}
],
"settings": {
"python.envFile": "${workspaceFolder}/.env",
"python.analysis.typeCheckingMode": "strict",
"notebook.formatOnSave.enabled": true,
"notebook.codeActionsOnSave": {
"notebook.source.organizeImports": "explicit",
"notebook.source.fixAll": "explicit"
},
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.fixAll": "explicit"
}
},
"python.testing.pytestArgs": [
"."
],
"python.testing.unittestEnabled": true,
"python.testing.pytestEnabled": true,
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
},
"[github-actions-workflow]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
}