diff options
author | Lucas Spits <[email protected]> | 2019-03-11 19:41:48 +0000 |
---|---|---|
committer | Lucas Spits <[email protected]> | 2019-03-11 19:41:48 +0000 |
commit | de4ad44282785d0928824eda5f062c2367a870f7 (patch) | |
tree | b89261aa34f9216d61e8f3751a009735ec139323 /.vscode/tasks.json | |
parent | 7185c594fe1b6c282c432c1fbb57e8e6e23421ed (diff) | |
parent | f96df105ea6d27f295cc1c0a6cdb6c50979f67ed (diff) |
Merge branch 'master' of https://github.com/LDSpits/rust-analyzer into feature/workspace-directory
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r-- | .vscode/tasks.json | 55 |
1 files changed, 34 insertions, 21 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 045cee326..063cbd174 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json | |||
@@ -10,7 +10,10 @@ | |||
10 | "problemMatcher": { | 10 | "problemMatcher": { |
11 | "owner": "typescript", | 11 | "owner": "typescript", |
12 | "pattern": "$tsc", | 12 | "pattern": "$tsc", |
13 | "fileLocation": ["relative", "${workspaceRoot}/editors/code"] | 13 | "fileLocation": [ |
14 | "relative", | ||
15 | "${workspaceRoot}/editors/code" | ||
16 | ] | ||
14 | }, | 17 | }, |
15 | "path": "editors/code/" | 18 | "path": "editors/code/" |
16 | }, | 19 | }, |
@@ -18,30 +21,40 @@ | |||
18 | "label": "Build Lsp", | 21 | "label": "Build Lsp", |
19 | "type": "shell", | 22 | "type": "shell", |
20 | "command": "cargo build", | 23 | "command": "cargo build", |
21 | "problemMatcher": { | 24 | "problemMatcher": "$rustc" |
22 | "owner": "rust", | ||
23 | "fileLocation": ["relative", "${workspaceRoot}"], | ||
24 | "pattern": [ | ||
25 | { | ||
26 | "regexp": "^(warning|warn|error)(?:\\[(.*?)\\])?: (.*)$", | ||
27 | "severity": 1, | ||
28 | "code": 2, | ||
29 | "message": 3 | ||
30 | }, | ||
31 | { | ||
32 | "regexp": "^[\\s->=]*(.*?):(\\d*):(\\d*)\\s*$", | ||
33 | "file": 1, | ||
34 | "line": 2, | ||
35 | "column": 3 | ||
36 | } | ||
37 | ] | ||
38 | } | ||
39 | }, | 25 | }, |
40 | { | 26 | { |
41 | "label": "Build All", | 27 | "label": "Build All", |
42 | "group": "build", | 28 | "group": "build", |
43 | "dependsOn": ["Build Extension", "Build Lsp"], | 29 | "dependsOn": [ |
30 | "Build Extension", | ||
31 | "Build Lsp" | ||
32 | ], | ||
44 | "problemMatcher": [] | 33 | "problemMatcher": [] |
34 | }, | ||
35 | { | ||
36 | "label": "cargo watch", | ||
37 | "group": "build", | ||
38 | "isBackground": true, | ||
39 | "type": "shell", | ||
40 | "command": "cargo", | ||
41 | "args": [ | ||
42 | "watch" | ||
43 | ], | ||
44 | "problemMatcher": "$rustc-watch" | ||
45 | }, | ||
46 | { | ||
47 | "label": "cargo watch tests", | ||
48 | "group": "build", | ||
49 | "isBackground": true, | ||
50 | "type": "shell", | ||
51 | "command": "cargo", | ||
52 | "args": [ | ||
53 | "watch", | ||
54 | "-x", | ||
55 | "check --tests" | ||
56 | ], | ||
57 | "problemMatcher": "$rustc-watch" | ||
45 | } | 58 | } |
46 | ] | 59 | ] |
47 | } | 60 | } \ No newline at end of file |