24 lines
581 B
JSON
24 lines
581 B
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"editor.insertSpaces": true,
|
|
"[typescript]": {
|
|
"editor.tabSize": 4
|
|
},
|
|
"[json]": {
|
|
"editor.tabSize": 2
|
|
},
|
|
"[jsonc]": {
|
|
"editor.tabSize": 2
|
|
},
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"clang-format.language.typescript.enable": false,
|
|
"[markdown]": {
|
|
"editor.defaultFormatter": "davidanson.vscode-markdownlint"
|
|
},
|
|
"markdownlint.config": {
|
|
"MD032": false, // don't require blank line around lists
|
|
"MD033": false, // allow inline html
|
|
"MD041": false // don't require h1 in first line
|
|
},
|
|
}
|