-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathwallet.code-workspace
60 lines (60 loc) · 1.12 KB
/
wallet.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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"folders": [
{
"name": "Core",
"path": "core"
},
{
"name": "Github",
"path": ".github"
},
{
"name": "Proto",
"path": "proto"
},
{
"name": "Firmware",
"path": "firmware"
},
{
"name": "Factory Test",
"path": "factory-test"
},
{
"name": "Firmware Signer",
"path": "firmware-signer"
},
{
"name": "Workspace",
"path": "."
},
],
"settings": {
"files.associations": {
"*.h": "c",
"*.c": "c",
"ld.jinja": "linkerscript",
},
"C_Cpp.enhancedColorization": "enabled",
"cortex-debug.JLinkGDBServerPath": "/usr/local/bin/JLinkGDBServerCL",
"cortex-debug.variableUseNaturalFormat": false,
"git.autoRepositoryDetection": false,
"git.detectSubmodules": false,
"search.exclude": {
"**/.git": true,
"**/firmware/third-party/*": true,
},
"files.exclude": {
"**/builddir": true,
"**/*.egg-info": true,
".hermit/": true,
},
"python.defaultInterpreterPath": "${workspaceFolder:Workspace}/bin/python",
"terminal.integrated.env.osx": {
"ACTIVE_HERMIT": null,
"HERMIT_ENV": null,
"HERMIT_ENV_OPS": null,
"HERMIT_BIN": null
},
},
}