aboutsummaryrefslogtreecommitdiff
path: root/code/package.json
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-13 11:46:05 +0100
committerAleksey Kladov <[email protected]>2018-08-13 11:46:05 +0100
commit18486a02fae5966e61f16ea7bc5c33c6c7c69487 (patch)
tree11b0c792cd8c233cb6a55208f86a0c812457ecd9 /code/package.json
parentbe742a587704f27f4e503c50f549aa9ec1527fcc (diff)
indexing infra
Diffstat (limited to 'code/package.json')
-rw-r--r--code/package.json32
1 files changed, 32 insertions, 0 deletions
diff --git a/code/package.json b/code/package.json
index eef16522f..8563ba73c 100644
--- a/code/package.json
+++ b/code/package.json
@@ -44,6 +44,38 @@
44 "key": "ctrl+w", 44 "key": "ctrl+w",
45 "when": "editorTextFocus && editorLangId == rust" 45 "when": "editorTextFocus && editorLangId == rust"
46 } 46 }
47 ],
48 "problemMatchers": [
49 {
50 "name": "rustc",
51 "fileLocation": [
52 "relative",
53 "${workspaceRoot}"
54 ],
55 "pattern": [
56 {
57 "regexp": "^(warning|warn|error)(\\[(.*)\\])?: (.*)$",
58 "severity": 1,
59 "message": 4,
60 "code": 3
61 },
62 {
63 "regexp": "^([\\s->=]*(.*):(\\d*):(\\d*)|.*)$",
64 "file": 2,
65 "line": 3,
66 "column": 4
67 },
68 {
69 "regexp": "^.*$"
70 },
71 {
72 "regexp": "^([\\s->=]*(.*):(\\d*):(\\d*)|.*)$",
73 "file": 2,
74 "line": 3,
75 "column": 4
76 }
77 ]
78 }
47 ] 79 ]
48 } 80 }
49} 81}