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