-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathblindsighted.code-workspace
More file actions
76 lines (76 loc) · 2.09 KB
/
Copy pathblindsighted.code-workspace
File metadata and controls
76 lines (76 loc) · 2.09 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"folders": [
{
"name": "ios (Swift)",
"path": "ios"
},
{
"name": "api (Python)",
"path": "api"
},
{
"name": "agents (Python)",
"path": "agents"
},
{
"name": "root",
"path": "."
}
],
"settings": {
// Swift/iOS settings
"[swift]": {
"editor.defaultFormatter": "vknabel.vscode-swift-format",
"editor.formatOnSave": true,
"editor.tabSize": 2
},
// Python settings
"python.defaultInterpreterPath": "${workspaceFolder:agents (Python)}/.venv/bin/python",
"python.analysis.extraPaths": [
"${workspaceFolder:api (Python)}"
],
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
}
},
// General editor settings
"editor.formatOnSave": true,
// File exclusions
"files.exclude": {
"**/__pycache__": true,
"**/*.pyc": true,
"**/.git": true,
"**/.DS_Store": true,
"**/DerivedData": true,
"**/*.xcworkspace": false,
"**/*.xcodeproj": false
},
"search.exclude": {
"**/.venv": true,
"**/dist": true,
"**/build": true,
"**/__pycache__": true,
"**/DerivedData": true,
"**/Pods": true
},
// Terminal settings
"terminal.integrated.cwd": "${workspaceFolder}"
},
"extensions": {
"recommendations": [
// Swift/iOS
"vknabel.vscode-swift-format",
"sswg.swift-lang",
// Python
"charliermarsh.ruff",
"ms-python.python",
"ms-python.vscode-pylance",
// General
"editorconfig.editorconfig"
]
}
}