Skip to content

Commit 90c7e3b

Browse files
committed
Merge branch 'main' of https://github.com/ssg/trid
2 parents f05ed0e + e73ef11 commit 90c7e3b

File tree

1 file changed

+18
-9
lines changed

1 file changed

+18
-9
lines changed

.vscode/tasks.json

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,37 +2,46 @@
22
"version": "2.0.0",
33
"tasks": [
44
{
5-
"type": "cargo",
6-
"command": "build",
5+
"type": "process",
6+
"command": "cargo",
7+
"args": [
8+
"build",
9+
],
710
"problemMatcher": [
811
"$rustc"
912
],
1013
"group": {
1114
"kind": "build",
1215
"isDefault": true
1316
},
14-
"label": "rust: cargo build"
17+
"label": "Rust: cargo build"
1518
},
1619
{
17-
"type": "cargo",
18-
"command": "test",
20+
"type": "process",
21+
"command": "cargo",
22+
"args": [
23+
"test",
24+
],
1925
"problemMatcher": [
2026
"$rustc"
2127
],
2228
"group": {
2329
"kind": "test",
2430
"isDefault": true
2531
},
26-
"label": "rust: cargo test"
32+
"label": "Rust: cargo test"
2733
},
2834
{
29-
"type": "cargo",
30-
"command": "clippy",
35+
"type": "process",
36+
"command": "cargo",
37+
"args": [
38+
"clippy",
39+
],
3140
"problemMatcher": [
3241
"$rustc"
3342
],
3443
"group": "build",
35-
"label": "rust: cargo clippy"
44+
"label": "Rust: cargo clippy"
3645
}
3746
]
3847
}

0 commit comments

Comments
 (0)