aboutsummaryrefslogtreecommitdiff
path: root/.zed/settings.json
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-07-21 06:40:46 +0800
committer魏曹先生 <1992414357@qq.com>2026-07-21 06:40:46 +0800
commit04ce3a18efe971c5b6893977f0ebe1ce1d9a6947 (patch)
tree0f70ebbfae3e89404603721a1505dbed0cd6371d /.zed/settings.json
parent8a230bd93b4801cc9001d0611ade16261e4f0cc4 (diff)
feat(mingling_cli): add metadata and linter commands with cargo analysis
Introduce `metadata` and `mlint` subcommands, wire up `cargo_metadata` for manifest analysis, and enable procedural macro support in editors
Diffstat (limited to '.zed/settings.json')
-rw-r--r--.zed/settings.json23
1 files changed, 12 insertions, 11 deletions
diff --git a/.zed/settings.json b/.zed/settings.json
index 3fa2cba..7378109 100644
--- a/.zed/settings.json
+++ b/.zed/settings.json
@@ -4,23 +4,24 @@
"initialization_options": {
"checkOnSave": true,
"check": { "command": "clippy" },
+ "files": {
+ "exclude": ["**/target/**", "**/.temp/**"]
+ },
"linkedProjects": [
".run/Cargo.toml",
"mingling_pathf/test/Cargo.toml",
- "mingling_cli/Cargo.toml",
"arg_picker/Cargo.toml",
- "arg_picker/test/Cargo.toml"
+ "arg_picker/test/Cargo.toml",
+ "mingling_cli/Cargo.toml"
],
"cargo": {
- "features": [
- "structural_renderer",
- "mingling_support",
- "all_serde_fmt",
- "docs_rs",
- "picker",
- "parser",
- "comp"
- ]
+ "features": []
+ },
+ "procMacro": {
+ "enable": true,
+ "attributes": {
+ "enable": true
+ }
}
}
}