-
Notifications
You must be signed in to change notification settings - Fork 289
Expand file tree
/
Copy pathsettings.json
More file actions
33 lines (33 loc) · 948 Bytes
/
settings.json
File metadata and controls
33 lines (33 loc) · 948 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
{
"python.analysis.typeCheckingMode": "standard",
"python-envs.pythonProjects": [
{
"path": "packages/backend",
"envManager": "ms-python.python:venv"
}
],
"files.trimTrailingWhitespace": true,
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"[javascript][css][typescript][json][jsonc][yaml][typescriptreact]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"[svelte]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "svelte.svelte-vscode",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"python.testing.pytestArgs": ["packages/backend"],
"python.testing.pytestEnabled": true
}