Skip to content

Commit 4b665f4

Browse files
committed
Migrate settings to workspace
1 parent c9b35e4 commit 4b665f4

File tree

2 files changed

+12
-27
lines changed

2 files changed

+12
-27
lines changed

.vscode/settings.json

Lines changed: 0 additions & 26 deletions
This file was deleted.

extension-dev.code-workspace

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,22 @@
2020
]
2121
},
2222
"settings": {
23+
"editor.tabSize": 4,
24+
"editor.insertSpaces": true,
25+
"files.trimTrailingWhitespace": true,
26+
"files.insertFinalNewline": true,
2327
"files.associations": {
28+
// Use JSONC instead of JSON because (1) that's how VS Code interprets
29+
// snippet files, and (2) it enables better source documentation.
2430
"**/snippets/*.json": "jsonc",
2531
"**/.vsts-ci/**/*.yml": "azure-pipelines",
2632
},
27-
"typescript.tsdk": "./node_modules/typescript/lib",
33+
// Ignore the Markdown rule:
34+
"markdownlint.config": {
35+
"MD024": false // no-duplicate-header
36+
},
37+
// Lock the TypeScript SDK path to the version we use
38+
"typescript.tsdk": "${workspaceFolder:Client}/node_modules/typescript/lib",
2839
"powershell.codeFormatting.autoCorrectAliases": true,
2940
"powershell.codeFormatting.newLineAfterCloseBrace": false,
3041
"powershell.codeFormatting.trimWhitespaceAroundPipe": true,

0 commit comments

Comments
 (0)