editor: initialize .vscode settings directory

These are basically always useful in vscode; turn them on. Note that there is an
editorconfig plugin for vscode and we do have a `.editorconfig` file but these
options aren't set due to an old intellj-rust bug.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2023-08-06 17:03:24 -05:00
parent 5eab5c8d75
commit 0bbad88ac0

4
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,4 @@
{
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true
}