]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/util/etc/vscode-tasks.json
Rollup merge of #99394 - JohnTitor:issue-95230, r=compiler-errors
[rust.git] / src / tools / clippy / 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                     "RUST_BACKTRACE": "1",
28                     // This task will usually execute all UI tests inside `tests/ui` you can
29                     // optionally uncomment the line below and only run a specific test.
30                     //
31                     // See: https://github.com/rust-lang/rust-clippy/blob/master/doc/adding_lints.md#testing
32                     //
33                     // "TESTNAME": "<TODO>",
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 }