File tree 2 files changed +12
-27
lines changed
2 files changed +12
-27
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 20
20
]
21
21
},
22
22
"settings" : {
23
+ "editor.tabSize" : 4 ,
24
+ "editor.insertSpaces" : true ,
25
+ "files.trimTrailingWhitespace" : true ,
26
+ "files.insertFinalNewline" : true ,
23
27
"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.
24
30
"**/snippets/*.json" : " jsonc" ,
25
31
"**/.vsts-ci/**/*.yml" : " azure-pipelines" ,
26
32
},
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" ,
28
39
"powershell.codeFormatting.autoCorrectAliases" : true ,
29
40
"powershell.codeFormatting.newLineAfterCloseBrace" : false ,
30
41
"powershell.codeFormatting.trimWhitespaceAroundPipe" : true ,
You can’t perform that action at this time.
0 commit comments