-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbolt.code-workspace
More file actions
105 lines (105 loc) · 3.11 KB
/
Copy pathbolt.code-workspace
File metadata and controls
105 lines (105 loc) · 3.11 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"folders": [
{
"name": "Flight Software",
"path": "flight-software"
},
{
"name": "Ground Station",
"path": "ground-station"
},
{
"name": "Telemetry Tools",
"path": "telemetry-tools"
},
{
"name": "Interfaces",
"path": "interfaces"
},
{
"name": "Docs",
"path": "docs"
},
{
"name": "Repo Root",
"path": "."
}
],
"settings": {
"files.associations": {
"*.clayer.yml": "yaml",
"*.cproject.yml": "yaml",
"*.csolution.yml": "yaml",
"*.cbuild-pack.yml": "yaml",
"*.cbuild-idx.yml": "yaml"
},
"files.exclude": {
"**/out": true,
"**/build": true,
"**/tmp": true,
"**/.venv": true,
"**/node_modules": true,
"**/RTE": true,
"**/generated": true
},
"search.exclude": {
"**/out": true,
"**/build": true,
"**/tmp": true,
"**/.venv": true,
"**/node_modules": true,
"**/RTE": true,
"**/generated": true,
"**/*.lock": true,
"**/*.cbuild-idx.yml": true
},
"editor.formatOnSave": false,
"[cpp]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "llvm-vs-code-extensions.vscode-clangd"
},
"[c]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "llvm-vs-code-extensions.vscode-clangd"
},
"[python]": {
"editor.formatOnSave": true
},
"[javascript]": {
"editor.formatOnSave": true
},
"[javascriptreact]": {
"editor.formatOnSave": true
},
"debug.hideSlowPreLaunchWarning": true,
"debug.showInStatusBar": "never",
"cmsis-csolution.generateClangSetup": false,
"cortex-debug.variableUseNaturalFormat": false,
"clangd.arguments": [],
"cmsis-csolution.autoDebugLaunch": false,
"memory-inspector.addressPadding": "32bit",
"memory-inspector.groupings.groupsPerRow": "Autofit",
"memory-inspector.groupings.MAUsPerGroup": 4,
"memory-inspector.scrollingBehavior": "Auto-Append",
"bolt.rxsmDebugPort": "/dev/ttyUSB0",
"cdt.debug.sourceHighlighting": false,
},
"extensions": {
"recommendations": [
"llvm-vs-code-extensions.vscode-clangd",
"marus25.cortex-debug",
"ms-vscode.vscode-serial-monitor",
"alexnesnes.teleplot",
"ms-python.python",
"mcu-debug.peripheral-viewer",
"mcu-debug.memory-view",
"ms-python.vscode-pylance",
"charliermarsh.ruff",
"dbaeumer.vscode-eslint",
"bradlc.vscode-tailwindcss",
"esbenp.prettier-vscode",
"tamasfe.even-better-toml",
"redhat.vscode-yaml"
]
}
}