-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmyproject.code-workspace
More file actions
54 lines (54 loc) · 1.52 KB
/
myproject.code-workspace
File metadata and controls
54 lines (54 loc) · 1.52 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
{
"folders": [
{
"name": "🏠 Main Branch",
"path": "."
}
// Your worktrees will appear here when created using:
// ./worktree-manager.sh create <branch-name>
//
// Example entries that will be added:
// {
// "name": "🚀 Feature: Your Feature",
// "path": "worktrees/feature/your-feature"
// }
],
"settings": {
"files.exclude": {
"**/.git": true,
"**/__pycache__": true,
"**/*.pyc": true
},
"search.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/.git": true
},
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.defaultProfile.windows": "powershell",
"git.autoRepositoryDetection": "openEditors",
"editor.formatOnSave": true,
"python.linting.enabled": true,
"python.linting.pylintEnabled": true
},
"extensions": {
"recommendations": [
"ms-python.python",
"eamodio.gitlens",
"mhutchie.git-graph"
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
}
]
}
}