From 52ac6c4303e4333f9ccb7ecf9dbd691edaad1182 Mon Sep 17 00:00:00 2001 From: Nick Brassel Date: Mon, 13 Apr 2020 11:31:40 +1000 Subject: [PATCH] Allow trailing whitespace in markdown docs, for formatting purposes. (#8774) --- .vscode/settings.json | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index f17b9e23e3e..9aa546a7877 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -9,13 +9,17 @@ "**/*.bin": true }, "files.associations": { - "*.h": "c", - "*.c": "c", - "*.inc": "c", - "*.cpp": "cpp", - "*.hpp": "cpp", - "xstddef": "c", - "type_traits": "c", - "utility": "c" + "*.h": "c", + "*.c": "c", + "*.inc": "c", + "*.cpp": "cpp", + "*.hpp": "cpp", + "xstddef": "c", + "type_traits": "c", + "utility": "c" + }, + "[markdown]": { + "editor.trimAutoWhitespace": false, + "files.trimTrailingWhitespace": false } }