-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheth-scanner.code-workspace
More file actions
83 lines (83 loc) · 1.98 KB
/
Copy patheth-scanner.code-workspace
File metadata and controls
83 lines (83 loc) · 1.98 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
{
"folders": [
{
"name": "00 - Project Root",
"path": "."
},
{
"name": "01 - Master API (Go)",
"path": "go"
},
{
"name": "02 - ESP32 Firmware (C++)",
"path": "esp32"
}
],
"settings": {
"files.exclude": {
"go": true,
"esp32": true,
"**/.git": true,
"**/node_modules": true
},
"chat.tools.terminal.autoApprove": {
"/^cd /home/user/code/garnizeh/eth-scanner/go && make lint$/": {
"approve": true,
"matchCommandLine": true
},
"/^cd /home/user/code/garnizeh/eth-scanner/go && make test$/": {
"approve": true,
"matchCommandLine": true
},
"/^cd go && make test$/": {
"approve": true,
"matchCommandLine": true
},
"/^make sqlc$/": {
"approve": true,
"matchCommandLine": true
},
"/^make test$/": {
"approve": true,
"matchCommandLine": true
},
"/^cd /home/user/code/garnizeh/eth-scanner/go && make fmt$/": {
"approve": true,
"matchCommandLine": true
},
"sqlite3": true,
"/^cd esp32 && pio run$/": {
"approve": true,
"matchCommandLine": true
},
"/^pio test -e esp32doit-devkit-v1$/": {
"approve": true,
"matchCommandLine": true
},
"/^cd go && make lint$/": {
"approve": true,
"matchCommandLine": true
},
"/^make lint$/": {
"approve": true,
"matchCommandLine": true
},
"/^pio test -e esp32doit-devkit-v1 -v$/": {
"approve": true,
"matchCommandLine": true
},
"/^cd /home/userone/Code/github/eth-scanner/go && make build$/": {
"approve": true,
"matchCommandLine": true
},
"/^make test \\| grep FAIL$/": {
"approve": true,
"matchCommandLine": true
},
"/^make test \\| tail -n 20$/": {
"approve": true,
"matchCommandLine": true
}
}
}
}