23 lines
882 B
JSON
23 lines
882 B
JSON
{
|
|
"editor.minimap.enabled": false,
|
|
"lldb.executable": "/usr/bin/lldb",
|
|
"files.watcherExclude": {
|
|
"**/target/**": true
|
|
},
|
|
"[rust]": {
|
|
"editor.formatOnSave": true
|
|
},
|
|
"rust-analyzer.experimental.procAttrMacros": false,
|
|
"rust-analyzer.assist.importPrefix": "plain",
|
|
"rust-analyzer.diagnostics.enableExperimental": true,
|
|
"rust-analyzer.inlayHints.closureReturnTypeHints": true,
|
|
"rust-analyzer.inlayHints.lifetimeElisionHints.useParameterNames": true,
|
|
"rust-analyzer.inlayHints.lifetimeElisionHints.enable": "skip_trivial",
|
|
"rust-analyzer.inlayHints.reborrowHints": true,
|
|
"rust-analyzer.checkOnSave.command": "clippy",
|
|
"rust-analyzer.procMacro.enable": false,
|
|
"rust-analyzer.diagnostics.disabled": ["unresolved-macro-call"],
|
|
"rust-analyzer.procMacro.ignored": {
|
|
"build-info": ["format"],
|
|
}
|
|
}
|