continue/.vscode/settings.json

21 lines
589 B
JSON

{
"python.defaultInterpreterPath": "${workspaceFolder}/server/.venv/bin/python3",
"rust-analyzer.linkedProjects": ["./server/Cargo.toml"],
"python.analysis.extraPaths": [],
"python.autoComplete.extraPaths": [],
"python.testing.pytestArgs": ["server"],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "bash",
"args": ["-l"]
}
},
"search.exclude": {
"./binary": true,
"**/core/vendor/**": true
}
}