25 lines
584 B
JSON
25 lines
584 B
JSON
|
{
|
||
|
"editor.inlineSuggest.enabled": true,
|
||
|
"[rust]": {
|
||
|
"editor.defaultFormatter": "rust-lang.rust-analyzer",
|
||
|
},
|
||
|
"editor.rulers": [
|
||
|
100
|
||
|
],
|
||
|
"rust-analyzer.check.overrideCommand": [
|
||
|
"cargo",
|
||
|
"clippy",
|
||
|
"--workspace",
|
||
|
"--message-format=json",
|
||
|
"--all-features",
|
||
|
"--all-targets",
|
||
|
"--",
|
||
|
"-A",
|
||
|
"incomplete-features"
|
||
|
],
|
||
|
"rust-analyzer.linkedProjects": [
|
||
|
"program/Cargo.toml",
|
||
|
"script/Cargo.toml",
|
||
|
],
|
||
|
"rust-analyzer.showUnlinkedFileNotification": false
|
||
|
}
|