-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathchrxer.code-workspace
More file actions
53 lines (52 loc) · 1.45 KB
/
chrxer.code-workspace
File metadata and controls
53 lines (52 loc) · 1.45 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"folders": [
{
"name": "chrxer",
"path": "."
},
{
"name": "chromium",
"path": "chromium/src"
},
{
"name": "backend",
"path": "backend"
}
],
"settings": {
"files.exclude": {
"**/.git": false
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/site-packages/*": true
},
"problems.decorations.enabled": false,
"problems.autoReveal": false,
"python.pipenvPath": "${workspaceFolder}/scripts/.venv",
"terminal.integrated.env.linux": {
"PATH": "${workspaceFolder}/scripts/.venv/bin:${workspaceFolder}/depot_tools:${workspaceFolder}/../../scripts/.venv/bin:${workspaceFolder}/../../depot_tools:${env:PATH}:/usr/local/go/bin"
},
"terminal.integrated.env.windows": {
"PATH": "${workspaceFolder}\\scripts\\.venv\\Scripts;${workspaceFolder}\\depot_tools;${workspaceFolder}\\..\\..\\scripts\\.venv\\Scripts;${workspaceFolder}\\..\\..\\depot_tools;${env:PATH}"
},
"git.repositoryScanIgnoredFolders": ["node_modules", "chromium/src"],
"files.associations": {
"*.ptcx": "python"
}
},
"extensions": {
"recommendations": [
"golang.go",
"google.cros-ide",
"ms-vscode.cpptools",
"ms-python.python",
"ms-python.debugpy",
"google.vscode-mojom",
"chrx.python-inline-3"
],
"unwantedRecommendations": ["twxs.cmake"]
}
}