File tree Expand file tree Collapse file tree 1 file changed +18
-9
lines changed
Expand file tree Collapse file tree 1 file changed +18
-9
lines changed Original file line number Diff line number Diff line change 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}
You can’t perform that action at this time.
0 commit comments