Files
waste-rs/.vscode/settings.json

16 lines
391 B
JSON
Raw Normal View History

{
"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
}
}