From 576b29b24cfc3acb5aa7e85a4aa92328072a2b5c Mon Sep 17 00:00:00 2001 From: DragonTrance Date: Wed, 8 Jun 2022 03:37:43 -0400 Subject: [PATCH] Makes Visual Studio insert a line at the end of each file --- .vscode/settings.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 69761b02a..af7daeb66 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -5,5 +5,7 @@ "workbench.editorAssociations": { "*.dmi": "imagePreview.previewEditor" - } -} \ No newline at end of file + }, + "files.eol": "\n", + "files.insertFinalNewline": true, +}