Files
oak-gpui/.zed/tasks.json
T
iamnbutler 2e1cf304ed Update .zed project settings for GPUI development
- Simplified language settings (removed Zed-specific formatters)
- Updated tasks to focus on GPUI crate
- Removed Zed-specific file scan exclusions
2025-12-12 14:24:35 -05:00

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,
},
]