You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+1-210Lines changed: 1 addition & 210 deletions
Original file line number
Diff line number
Diff line change
@@ -178,7 +178,7 @@
178
178
},
179
179
"bsv.bzl.server.github-release": {
180
180
"type": "string",
181
-
"default": "0.9.1-rc11",
181
+
"default": "0.9.0",
182
182
"description": "The github release tag of the bzl release to download"
183
183
},
184
184
"bsv.bzl.server.github-owner": {
@@ -203,215 +203,6 @@
203
203
"--log_level=info"
204
204
]
205
205
},
206
-
"bsv.bzl.problemMatchers": {
207
-
"type": "array",
208
-
"description": "Set of named problem matchers to associate with a bazel action mnemonic.",
209
-
"items": {
210
-
"type": "object",
211
-
"title": "problem matcher list",
212
-
"properties": {
213
-
"name": {
214
-
"type": "string",
215
-
"description": "The name of the bazel mnemonic (e.g. ProtoCompile)"
216
-
},
217
-
"label": {
218
-
"type": "string",
219
-
"description": "A human readable label."
220
-
},
221
-
"owner": {
222
-
"type": "string",
223
-
"description": "The owner of the matcher (optional)."
224
-
},
225
-
"source": {
226
-
"type": "string",
227
-
"description": "A human-readable string describing the source of this problem. E.g. 'protoc' or 'clang'"
228
-
},
229
-
"severity": {
230
-
"type": "string",
231
-
"description": "The severity of the VSCode problem produced by this problem matcher."
232
-
},
233
-
"fileLocation": {
234
-
"type": "array",
235
-
"description": "Defines how filename reported in a problem pattern should be read.",
236
-
"items": {
237
-
"type": "string"
238
-
}
239
-
},
240
-
"pattern": {
241
-
"type": "array",
242
-
"description": "the inline definition of a problem pattern.",
243
-
"items": {
244
-
"type": "object",
245
-
"properties": {
246
-
"regexp": {
247
-
"type": "string",
248
-
"description": "The regular expression to find a problem in the output of an action"
249
-
},
250
-
"kind": {
251
-
"type": "string",
252
-
"description": "Whether the pattern matches a whole file, or a location (file/line)"
253
-
},
254
-
"file": {
255
-
"type": "number",
256
-
"description": "The match group index of the filename. If omitted 1 is used."
257
-
},
258
-
"location": {
259
-
"type": "number",
260
-
"description": "The match group index of the problem's location"
261
-
},
262
-
"line": {
263
-
"type": "number",
264
-
"description": "The match group index of the problem's line in the source file. Defaults to 2."
265
-
},
266
-
"column": {
267
-
"type": "number",
268
-
"description": "The match group index of the problem's column in the source file. Defaults to 3."
269
-
},
270
-
"endLine": {
271
-
"type": "number",
272
-
"description": "The match group index of the problem's end line in the source file."
273
-
},
274
-
"endColumn": {
275
-
"type": "number",
276
-
"description": "The match group index of the problem's end column in the source file."
277
-
},
278
-
"severity": {
279
-
"type": "string",
280
-
"description": "The match group index of the problem's severity"
281
-
},
282
-
"code": {
283
-
"type": "number",
284
-
"description": "The match group index of the problem's code"
285
-
},
286
-
"message": {
287
-
"type": "number",
288
-
"description": "The match group index of the message."
289
-
},
290
-
"loop": {
291
-
"type": "boolean",
292
-
"description": "Specifies if the last pattern in a multi line problem matcher should loop as long as it does match a line consequently. Only valid on the last problem pattern in a multi line problem matcher."
0 commit comments