diff options
author | Oliver Scherer <[email protected]> | 2019-12-15 16:19:41 +0000 |
---|---|---|
committer | Oliver Scherer <[email protected]> | 2019-12-15 16:19:41 +0000 |
commit | 5166f6e5f20ce807a8f41d5039d2135a7eb13d29 (patch) | |
tree | 70f530a68a0cbf70f5cc3faaa8d8142951245545 | |
parent | eed57dcded5eb661d05c23a642ca03f9b87391fa (diff) |
Properly format json
-rw-r--r-- | editors/code/package.json | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/editors/code/package.json b/editors/code/package.json index ebb1b4a98..9290599c7 100644 --- a/editors/code/package.json +++ b/editors/code/package.json | |||
@@ -316,15 +316,17 @@ | |||
316 | }, | 316 | }, |
317 | { | 317 | { |
318 | "name": "rustc-json", | 318 | "name": "rustc-json", |
319 | "patterns": [{ | 319 | "patterns": [ |
320 | "regexp": "^.*\"message\":{\"message\":\"([^\"]*).*?\"file_name\":\"([^\"]+).*?\"line_start\":(\\d+).*?\"line_end\":(\\d+).*?\"column_start\":(\\d+).*?\"column_end\":(\\d+).*}$", | 320 | { |
321 | "message": 1, | 321 | "regexp": "^.*\"message\":{\"message\":\"([^\"]*).*?\"file_name\":\"([^\"]+).*?\"line_start\":(\\d+).*?\"line_end\":(\\d+).*?\"column_start\":(\\d+).*?\"column_end\":(\\d+).*}$", |
322 | "file": 2, | 322 | "message": 1, |
323 | "line": 3, | 323 | "file": 2, |
324 | "endLine": 4, | 324 | "line": 3, |
325 | "column": 5, | 325 | "endLine": 4, |
326 | "endColumn": 6 | 326 | "column": 5, |
327 | }] | 327 | "endColumn": 6 |
328 | } | ||
329 | ] | ||
328 | } | 330 | } |
329 | ], | 331 | ], |
330 | "problemMatchers": [ | 332 | "problemMatchers": [ |