tcpasters/.vscode/settings.json
Thorsten Schubert 7f9dfac651
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing
Use mimalloc allocator
2022-05-17 17:16:19 +00:00

30 lines
1.1 KiB
JSON

{
"editor.minimap.enabled": false,
"files.watcherExclude": {
"**/target/**": true
},
"[rust]": {
"editor.formatOnSave": true
},
"lldb.executable": "/usr/bin/lldb",
"lldb.displayFormat": "auto",
"lldb.showDisassembly": "auto",
"lldb.dereferencePointers": true,
"lldb.consoleMode": "commands",
"lldb.launch.initCommands": [
"settings set target.x86-disassembly-flavor intel"
],
"rust-analyzer.inlayHints.lifetimeElisionHints.useParameterNames": false,
"rust-analyzer.inlayHints.lifetimeElisionHints.enable": "always",
"rust-analyzer.checkOnSave.command": "clippy",
"rust-analyzer.imports.prefix": "plain",
"rust-analyzer.diagnostics.experimental.enable": true,
"rust-analyzer.procMacro.attributes.enable": false,
"rust-analyzer.inlayHints.closureReturnTypeHints.enable": true,
"rust-analyzer.inlayHints.reborrowHints.enable": true,
// "rust-analyzer.procMacro.enable": false,
// "rust-analyzer.diagnostics.disabled": ["unresolved-macro-call"],
// "rust-analyzer.procMacro.ignored": {
// "build-info": ["format"],
// }
}