Skip to content

Commit 52ac6c4

Browse files
authored
Allow trailing whitespace in markdown docs, for formatting purposes. (#8774)
1 parent 05e9ff6 commit 52ac6c4

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

.vscode/settings.json

+12-8
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,17 @@
99
"**/*.bin": true
1010
},
1111
"files.associations": {
12-
"*.h": "c",
13-
"*.c": "c",
14-
"*.inc": "c",
15-
"*.cpp": "cpp",
16-
"*.hpp": "cpp",
17-
"xstddef": "c",
18-
"type_traits": "c",
19-
"utility": "c"
12+
"*.h": "c",
13+
"*.c": "c",
14+
"*.inc": "c",
15+
"*.cpp": "cpp",
16+
"*.hpp": "cpp",
17+
"xstddef": "c",
18+
"type_traits": "c",
19+
"utility": "c"
20+
},
21+
"[markdown]": {
22+
"editor.trimAutoWhitespace": false,
23+
"files.trimTrailingWhitespace": false
2024
}
2125
}

0 commit comments

Comments
 (0)