]> git.lizzy.rs Git - rust.git/blob - util/etc/vscode-tasks.json
Auto merge of #9989 - xFrednet:9986-move-safety-thingy, r=flip1995
[rust.git] / util / etc / vscode-tasks.json
1 {
2     "version": "2.0.0",
3     "tasks": [
4         {
5             "label": "cargo check",
6             "type": "shell",
7             "command": "cargo check",
8             "problemMatcher": [],
9             "group": {
10                 "kind": "build",
11                 "isDefault": true
12             }
13         },
14         {
15             "label": "cargo dev fmt",
16             "type": "shell",
17             "command": "cargo dev fmt",
18             "problemMatcher": [],
19             "group": "none"
20         },
21         {
22             "label": "cargo uitest",
23             "type": "shell",
24             "command": "cargo uitest",
25             "options": {
26                 "env": {
27                     // This task will usually execute all UI tests inside `tests/ui` you can
28                     // optionally uncomment the line below and only run a specific test.
29                     //
30                     // See: https://github.com/rust-lang/rust-clippy/blob/master/book/src/development/adding_lints.md#testing
31                     //
32                     // "TESTNAME": "<TODO>",
33                     "RUST_BACKTRACE": "1"
34                 }
35             },
36             "problemMatcher": [],
37             "group": {
38                 "kind": "test",
39                 "isDefault": true
40             }
41         },
42         {
43             "label": "cargo test",
44             "type": "shell",
45             "command": "cargo test",
46             "problemMatcher": [],
47             "group": "test"
48         },
49         {
50             "label": "cargo dev bless",
51             "type": "shell",
52             "command": "cargo dev bless",
53             "problemMatcher": [],
54             "group": "none"
55         }
56     ]
57 }