- Simplified language settings (removed Zed-specific formatters) - Updated tasks to focus on GPUI crate - Removed Zed-specific file scan exclusions
24 lines
503 B
JSON
24 lines
503 B
JSON
[
|
|
{
|
|
"label": "clippy",
|
|
"command": "./script/clippy",
|
|
"args": [],
|
|
"allow_concurrent_runs": true,
|
|
"use_new_terminal": false,
|
|
},
|
|
{
|
|
"label": "cargo check gpui",
|
|
"command": "cargo",
|
|
"args": ["check", "--package", "gpui"],
|
|
"allow_concurrent_runs": true,
|
|
"use_new_terminal": false,
|
|
},
|
|
{
|
|
"label": "cargo test gpui",
|
|
"command": "cargo",
|
|
"args": ["test", "--package", "gpui"],
|
|
"allow_concurrent_runs": false,
|
|
"use_new_terminal": false,
|
|
},
|
|
]
|