burrow/.vscode/settings.json
Malted 45499da9c2 🔥 Show .gitignored files in VS Code
This disables a workspace setting that hid .gitignored files
2023-04-22 12:39:40 -04:00

15 lines
503 B
JSON

{
"files.autoSave": "onFocusChange",
"files.defaultLanguage": "rust",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"files.trimTrailingWhitespace": true,
"editor.suggest.preview": true,
"editor.acceptSuggestionOnEnter": "on",
"rust-analyzer.checkOnSave.command": "clippy",
"rust-analyzer.restartServerOnConfigChange": true,
"rust-analyzer.cargo.features": "all",
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer",
},
}