Skip to content

Commit 2039b81

Browse files
committed
chore: 🐛 Adapt problemMatcher configuration to the lastest VSCode
1 parent 0e00b74 commit 2039b81

File tree

1 file changed

+68
-13
lines changed

1 file changed

+68
-13
lines changed

codal-letssteam.code-workspace

Lines changed: 68 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@
9494
"core_cm4.h": "c",
9595

9696
"variant.h": "c"
97-
}
97+
},
98+
"conventionalCommits.scopes": ["docker"]
9899
},
99100
"extensions": {
100101
"recommendations": [
@@ -146,8 +147,17 @@
146147
"type": "shell",
147148
"command": "make build",
148149
"problemMatcher": {
149-
"base": "$gcc",
150-
"fileLocation": "absolute"
150+
"owner": "cpp",
151+
"source": "gcc",
152+
"fileLocation": "absolute",
153+
"pattern": {
154+
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
155+
"file": 1,
156+
"line": 2,
157+
"column": 3,
158+
"severity": 4,
159+
"message": 5
160+
}
151161
},
152162
"group": {
153163
"kind": "build",
@@ -160,8 +170,17 @@
160170
"type": "shell",
161171
"command": "make build_all",
162172
"problemMatcher": {
163-
"base": "$gcc",
164-
"fileLocation": "absolute"
173+
"owner": "cpp",
174+
"source": "gcc",
175+
"fileLocation": "absolute",
176+
"pattern": {
177+
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
178+
"file": 1,
179+
"line": 2,
180+
"column": 3,
181+
"severity": 4,
182+
"message": 5
183+
}
165184
},
166185
"group": "build"
167186
},
@@ -171,8 +190,17 @@
171190
"type": "shell",
172191
"command": "make build_codal-stm32-DISCO_L475VG_IOT",
173192
"problemMatcher": {
174-
"base": "$gcc",
175-
"fileLocation": "absolute"
193+
"owner": "cpp",
194+
"source": "gcc",
195+
"fileLocation": "absolute",
196+
"pattern": {
197+
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
198+
"file": 1,
199+
"line": 2,
200+
"column": 3,
201+
"severity": 4,
202+
"message": 5
203+
}
176204
},
177205
"group": "build"
178206
},
@@ -182,8 +210,17 @@
182210
"type": "shell",
183211
"command": "make build_codal-stm32-PNUCLEO_WB55RG",
184212
"problemMatcher": {
185-
"base": "$gcc",
186-
"fileLocation": "absolute"
213+
"owner": "cpp",
214+
"source": "gcc",
215+
"fileLocation": "absolute",
216+
"pattern": {
217+
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
218+
"file": 1,
219+
"line": 2,
220+
"column": 3,
221+
"severity": 4,
222+
"message": 5
223+
}
187224
},
188225
"group": "build"
189226
},
@@ -193,8 +230,17 @@
193230
"type": "shell",
194231
"command": "make build_codal-stm32-STEAM32_WB55RG",
195232
"problemMatcher": {
196-
"base": "$gcc",
197-
"fileLocation": "absolute"
233+
"owner": "cpp",
234+
"source": "gcc",
235+
"fileLocation": "absolute",
236+
"pattern": {
237+
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
238+
"file": 1,
239+
"line": 2,
240+
"column": 3,
241+
"severity": 4,
242+
"message": 5
243+
}
198244
},
199245
"group": "build"
200246
},
@@ -204,8 +250,17 @@
204250
"type": "shell",
205251
"command": "make clean",
206252
"problemMatcher": {
207-
"base": "$gcc",
208-
"fileLocation": "absolute"
253+
"owner": "cpp",
254+
"source": "gcc",
255+
"fileLocation": "absolute",
256+
"pattern": {
257+
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
258+
"file": 1,
259+
"line": 2,
260+
"column": 3,
261+
"severity": 4,
262+
"message": 5
263+
}
209264
},
210265
"group": "build"
211266
},

0 commit comments

Comments
 (0)