Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Bierner <matb@microsoft.com>2021-02-19 02:36:52 +0300
committerMatt Bierner <matb@microsoft.com>2021-02-19 02:37:00 +0300
commit8806d063fe637a0dc2c6973cf81fa69862e1732d (patch)
treecf9f512368b97e4aace52c0b7d9ee6c69f854f9c /.vscode/settings.json
parent25c0fb7f2f608207710d4996ac09a7590fbcd9ad (diff)
Enable extensible markdown notebook rendering in VS Code workspace
Diffstat (limited to '.vscode/settings.json')
-rw-r--r--.vscode/settings.json15
1 files changed, 11 insertions, 4 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 0222b24c2a4..eabef1693e9 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -43,7 +43,9 @@
}
],
"eslint.options": {
- "rulePaths": ["./build/lib/eslint"]
+ "rulePaths": [
+ "./build/lib/eslint"
+ ]
},
"typescript.tsdk": "node_modules/typescript/lib",
"npm.exclude": "**/extensions/**",
@@ -53,11 +55,15 @@
"typescript.preferences.quoteStyle": "single",
"json.schemas": [
{
- "fileMatch": ["cgmanifest.json"],
+ "fileMatch": [
+ "cgmanifest.json"
+ ],
"url": "./.vscode/cgmanifest.schema.json"
},
{
- "fileMatch": ["cglicenses.json"],
+ "fileMatch": [
+ "cglicenses.json"
+ ],
"url": "./.vscode/cglicenses.schema.json"
}
],
@@ -78,5 +84,6 @@
"editor.defaultFormatter": "vscode.typescript-language-features",
"editor.formatOnSave": true,
},
- "typescript.tsc.autoDetect": "off"
+ "typescript.tsc.autoDetect": "off",
+ "notebook.experimental.useMarkdownRenderer": true,
}