forked from microsoft/vscode-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
29 lines (28 loc) · 997 Bytes
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Place your settings in this file to overwrite default and user settings.
{
"git.branchProtection": [
"main"
],
"git.branchProtectionPrompt": "alwaysCommitToNewBranch",
"editor.wordWrap": "on",
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"files.associations": {
"**/toc.json": "jsonc"
},
"markdown.validate.enabled": true,
"markdown.validate.ignoredLinks": [
"/Download",
"/insiders"
],
"markdown.copyFiles.destination": {
// /release-notes/v123.md -> /release-notes/images/123/img.png
"/release-notes/**/*": "/release-notes/images/${documentBaseName/v(.*)/$1/}/",
// Put into 'images' directory next to file
"/api/**/*": "images/${documentBaseName}/"
},
"editor.codeActionsOnSave": {
"source.organizeLinkDefinitions": "explicit"
},
"markdown.editor.filePaste.videoSnippet": "<video src=\"${src}\" title=\"${title}\" autoplay loop controls muted></video>"
}