From 3e6d4ee14bc7ef62f8ab9fd5bb703ed11ea14ae0 Mon Sep 17 00:00:00 2001 From: rtldg <55846624+rtldg@users.noreply.github.com> Date: Sat, 10 Aug 2024 20:48:55 +0000 Subject: [PATCH] Another VS Code setting to disable trim on save (#1579) follow up to https://github.com/hydrusnetwork/hydrus/pull/1473 --- .vscode/settings.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index f431ecc2..87126e75 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,7 @@ { "editor.trimAutoWhitespace": false, "editor.renderWhitespace": "boundary", + "files.trimTrailingWhitespace": false, "diffEditor.ignoreTrimWhitespace": false, "editor.tabSize": 4 } \ No newline at end of file