将 rust-analyzer 配置从 JSON 迁移为 TOML 格式

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
xfy 2026-05-29 09:42:50 +08:00
parent b0bb94d184
commit 6ddc02a815
2 changed files with 4 additions and 12 deletions

View File

@ -1,12 +0,0 @@
{
"linkedProjects": ["Cargo.toml"],
"files": {
"exclude": [
"node_modules",
"public",
".dioxus",
".omc",
"dist"
]
}
}

4
rust-analyzer.toml Normal file
View File

@ -0,0 +1,4 @@
linkedProjects = ["Cargo.toml"]
[files]
exclude = ["node_modules", "public", ".dioxus", ".omc", "dist"]