-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdffmpeg.code-workspace
More file actions
26 lines (26 loc) · 1.16 KB
/
dffmpeg.code-workspace
File metadata and controls
26 lines (26 loc) · 1.16 KB
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
{
"folders": [
{ "name": "workspace", "path": "." },
{ "name": "client", "path": "packages/dffmpeg-client" },
{ "name": "common", "path": "packages/dffmpeg-common" },
{ "name": "coordinator", "path": "packages/dffmpeg-coordinator" },
{ "name": "worker", "path": "packages/dffmpeg-worker" },
{ "name": "docs", "path": "docs" }
],
"settings": {
"python.defaultInterpreterPath": "${workspaceFolder:workspace}/.venv/bin/python",
"python.analysis.extraPaths": [
"${workspaceFolder:workspace}/packages/dffmpeg-client/src",
"${workspaceFolder:workspace}/packages/dffmpeg-common/src",
"${workspaceFolder:workspace}/packages/dffmpeg-coordinator/src",
"${workspaceFolder:workspace}/packages/dffmpeg-worker/src",
],
"python.analysis.packageIndexDepths": [
{ "name": "dffmpeg", "depth": 2, "includeAllSymbols": true}
],
"python.analysis.indexing": true,
"python.terminal.activateEnvInCurrentTerminal": true,
"python.terminal.activateEnvironment": true,
"python.analysis.diagnosticMode": "workspace",
}
}