mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-20 10:55:14 +00:00
39 lines
1.2 KiB
JSON
39 lines
1.2 KiB
JSON
{
|
|
"git.detectSubmodulesLimit": 20,
|
|
"rust-analyzer.check.invocationStrategy": "once",
|
|
"rust-analyzer.check.overrideCommand": [
|
|
"python3",
|
|
"x.py",
|
|
"check",
|
|
"--json-output"
|
|
],
|
|
"rust-analyzer.linkedProjects": [
|
|
"Cargo.toml",
|
|
"library/Cargo.toml",
|
|
"src/tools/x/Cargo.toml",
|
|
"src/bootstrap/Cargo.toml",
|
|
"src/tools/rust-analyzer/Cargo.toml",
|
|
"compiler/rustc_codegen_cranelift/Cargo.toml",
|
|
"compiler/rustc_codegen_gcc/Cargo.toml"
|
|
],
|
|
"rust-analyzer.rustfmt.overrideCommand": [
|
|
"${workspaceFolder}/build/host/rustfmt/bin/rustfmt",
|
|
"--edition=2021"
|
|
],
|
|
"rust-analyzer.procMacro.server": "${workspaceFolder}/build/host/stage0/libexec/rust-analyzer-proc-macro-srv",
|
|
"rust-analyzer.procMacro.enable": true,
|
|
"rust-analyzer.cargo.buildScripts.enable": true,
|
|
"rust-analyzer.cargo.buildScripts.invocationStrategy": "once",
|
|
"rust-analyzer.cargo.buildScripts.overrideCommand": [
|
|
"python3",
|
|
"x.py",
|
|
"check",
|
|
"--json-output"
|
|
],
|
|
"rust-analyzer.cargo.sysrootSrc": "./library",
|
|
"rust-analyzer.rustc.source": "./Cargo.toml",
|
|
"rust-analyzer.cargo.extraEnv": {
|
|
"RUSTC_BOOTSTRAP": "1"
|
|
}
|
|
}
|