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": true12 }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 can28 // 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#testing31 //32 // "TESTNAME": "<TODO>",33 "RUST_BACKTRACE": "1"34 }35 },36 "problemMatcher": [],37 "group": {38 "kind": "test",39 "isDefault": true40 }41 },42 {43 "label": "cargo test",44 "type": "shell",45 "command": "cargo test",46 "problemMatcher": [],47 "group": "test"48 },49 {50 "label": "bless ui tests",51 "type": "shell",52 "command": "cargo bless",53 "problemMatcher": [],54 "group": "none"55 }56 ]57}
Findings
✓ No findings reported for this file.