summary refs log tree commit diff
path: root/.vscode
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2020-04-13 11:31:40 +1000
committerGitHub <noreply@github.com>2020-04-13 11:31:40 +1000
commit52ac6c4303e4333f9ccb7ecf9dbd691edaad1182 (patch)
tree8af27a28e15c15efd8ec2707058a7293271b4685 /.vscode
parent05e9ff6554a1be119a585d691067ca2379c1d80d (diff)
Allow trailing whitespace in markdown docs, for formatting purposes. (#8774)
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/settings.json20
1 files changed, 12 insertions, 8 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json
index f17b9e23e3..9aa546a787 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
     }
 }