mirror of
https://github.com/logos-blockchain/lssa-zkvm-testing.git
synced 2026-01-02 13:23:08 +00:00
37 lines
895 B
JSON
37 lines
895 B
JSON
{
|
|
"rust-analyzer.linkedProjects": [
|
|
"program/Cargo.toml",
|
|
"script/Cargo.toml"
|
|
],
|
|
"rust-analyzer.check.overrideCommand": [
|
|
"cargo",
|
|
"clippy",
|
|
"--workspace",
|
|
"--message-format=json",
|
|
"--all-features",
|
|
"--all-targets",
|
|
"--",
|
|
"-A",
|
|
"incomplete-features"
|
|
],
|
|
"rust-analyzer.runnables.extraEnv": {
|
|
"RUST_LOG": "debug",
|
|
"RUSTFLAGS": "-Ctarget-cpu=native"
|
|
},
|
|
"rust-analyzer.runnables.extraArgs": [
|
|
"--release",
|
|
"+nightly"
|
|
],
|
|
"rust-analyzer.diagnostics.disabled": [
|
|
"unresolved-proc-macro"
|
|
],
|
|
"editor.rulers": [
|
|
100
|
|
],
|
|
"editor.inlineSuggest.enabled": true,
|
|
"[rust]": {
|
|
"editor.defaultFormatter": "rust-lang.rust-analyzer",
|
|
"editor.formatOnSave": true,
|
|
"editor.hover.enabled": true
|
|
},
|
|
} |