tcpasters/.vscode/settings.json
Thorsten Schubert 7dbce71ee2
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing
Multi-threaded nudity scanner
2022-04-29 21:58:02 +00:00

28 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.experimental.procAttrMacros": false,
"rust-analyzer.assist.importPrefix": "plain",
"rust-analyzer.diagnostics.enableExperimental": true,
"rust-analyzer.inlayHints.closureReturnTypeHints": true,
"rust-analyzer.inlayHints.lifetimeElisionHints.useParameterNames": false,
"rust-analyzer.inlayHints.lifetimeElisionHints.enable": "always",
"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"],
// }
}