Allow trailing whitespace in markdown docs, for formatting purposes. (#8774)

master
Nick Brassel 2020-04-13 11:31:40 +10:00 committed by GitHub
parent 05e9ff6554
commit 52ac6c4303
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 8 deletions

20
.vscode/settings.json vendored
View File

@ -9,13 +9,17 @@
"**/*.bin": true "**/*.bin": true
}, },
"files.associations": { "files.associations": {
"*.h": "c", "*.h": "c",
"*.c": "c", "*.c": "c",
"*.inc": "c", "*.inc": "c",
"*.cpp": "cpp", "*.cpp": "cpp",
"*.hpp": "cpp", "*.hpp": "cpp",
"xstddef": "c", "xstddef": "c",
"type_traits": "c", "type_traits": "c",
"utility": "c" "utility": "c"
},
"[markdown]": {
"editor.trimAutoWhitespace": false,
"files.trimTrailingWhitespace": false
} }
} }