16 lines
391 B
JSON
16 lines
391 B
JSON
|
|
{
|
||
|
|
"rust-analyzer.linkedProjects": ["./Cargo.toml"],
|
||
|
|
"rust-analyzer.checkOnSave.command": "clippy",
|
||
|
|
"rust-analyzer.cargo.features": "all",
|
||
|
|
"editor.formatOnSave": true,
|
||
|
|
"[rust]": {
|
||
|
|
"editor.defaultFormatter": "rust-lang.rust-analyzer"
|
||
|
|
},
|
||
|
|
"files.watcherExclude": {
|
||
|
|
"**/target/**": true
|
||
|
|
},
|
||
|
|
"search.exclude": {
|
||
|
|
"**/target": true
|
||
|
|
}
|
||
|
|
}
|