aboutsummaryrefslogtreecommitdiff
path: root/rust-analyzer.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-04-07 13:53:48 +0800
committer魏曹先生 <1992414357@qq.com>2026-04-07 13:53:48 +0800
commit5135ed716bc790486d053e0f84fd016614a44fc0 (patch)
treeaf399fb70839adc965ac0f49100582e2bc43b1c2 /rust-analyzer.toml
parentd2d9d36c781f3a957200af2eef35ebf76c39d5dc (diff)
Remove rust-analyzer.toml configuration file
Diffstat (limited to 'rust-analyzer.toml')
-rw-r--r--rust-analyzer.toml47
1 files changed, 0 insertions, 47 deletions
diff --git a/rust-analyzer.toml b/rust-analyzer.toml
deleted file mode 100644
index 1f677ad..0000000
--- a/rust-analyzer.toml
+++ /dev/null
@@ -1,47 +0,0 @@
-[rust-analyzer]
-proc-macro.enable = true
-proc-macro.attributes.enable = true
-
-diagnostics.disabled = ["unresolved-proc-macro"]
-
-inlay-hints.type-hints = true
-inlay-hints.parameter-hints = true
-inlay-hints.chaining-hints = true
-
-completion.autoimport.enable = true
-completion.postfix.enable = true
-
-lens.enable = true
-lens.implementations.enable = true
-lens.references.enable = true
-
-check.command = "clippy"
-check.extraArgs = ["--all-features"]
-
-files.watcher = "client"
-files.excludeDirs = [
- "src/data/compile_info.rs"
-]
-
-macro-expansion.mode = "hir"
-macro-expansion.max-depth = 32
-macro-expansion.engines.hir = true
-macro-expansion.engines.tt = true
-
-workspace.symbol.search.scope = "workspace"
-
-assist.importMergeBehavior = "last"
-assist.importPrefix = "by_self"
-
-hover.actions.enable = true
-hover.actions.debug.enable = true
-hover.actions.gotoTypeDef.enable = true
-hover.actions.implementations.enable = true
-hover.actions.references.enable = true
-
-callInfo.full = true
-
-linkedProjects = ["Cargo.toml"]
-
-experimental.procAttrMacros = true
-experimental.procMacro.server = true