-
Notifications
You must be signed in to change notification settings - Fork 444
Expand file tree
/
Copy pathsettings.json
More file actions
27 lines (27 loc) · 937 Bytes
/
Copy pathsettings.json
File metadata and controls
27 lines (27 loc) · 937 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
{
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.rulers": []
},
"yaml.schemas": {
"./.vscode/fastagent.config.schema.json": [
"fastagent.config.yaml",
"fastagent.secrets.yaml"
]
},
"python.testing.pytestArgs": ["tests"],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.analysis.typeCheckingMode": "standard",
"python.analysis.nodeExecutable": "auto",
"python-envs.pythonProjects": [],
"python.languageServer": "None",
"python-envs.defaultEnvManager": "ms-python.python:venv",
"python.analysis.inlayHints.functionReturnTypes": true,
"python.analysis.inlayHints.variableTypes": true,
"python.analysis.inlayHints.pytestParameters": true,
"python.analysis.inlayHints.callArgumentNames": "partial"
}