-
Notifications
You must be signed in to change notification settings - Fork 3
/
retro.code-workspace
47 lines (47 loc) · 1002 Bytes
/
retro.code-workspace
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
{
"folders": [
{
"name": "retro-build-environment (master)",
"path": "."
}
],
"extensions": {
"recommendations": [
"EugenWiens.bitbake",
"coolbear.systemd-unit-file",
"henriiik.vscode-sort",
"luveti.kconfig",
"eamodio.gitlens"
]
},
"settings": {
"editor.insertSpaces": false,
"editor.detectIndentation": true,
"editor.tabSize": 4,
"files.associations": {
"*.bb": "bitbake",
"*.bbclass": "bitbake",
"*.inc": "bitbake",
"*.bbappend": "bitbake",
"defconfig": "kconfig"
},
"search.exclude": {
"**/build/cache/**": true,
"**/build/downloads/**": true,
"**/build/sstate-cache/**": true,
"**/build/tmp/**": true
},
"files.exclude": {
"**/build/cache/**": true,
"**/build/downloads/**": true,
"**/build/sstate-cache/**": true,
"**/build/tmp/**": true
},
"files.watcherExclude": {
"**/build/cache/**": true,
"**/build/downloads/**": true,
"**/build/sstate-cache/**": true,
"**/build/tmp/**": true
}
}
}