vsc-material-theme/.vscode/settings.json

27 lines
591 B
JSON
Raw Normal View History

2017-05-10 10:22:05 +02:00
{
"editor.tabSize": 2,
"editor.insertSpaces": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"node_modules": true,
"**/*.js": {
"when": "$(basename).ts"
},
"**/*.js.map": true
},
2017-05-10 10:22:05 +02:00
"files.associations": {
"*.template": "json"
},
"html.format.preserveNewLines": true,
"files.trimTrailingWhitespace": true,
"[markdown]": {
"diffEditor.ignoreTrimWhitespace": false,
"editor.tabSize": 4,
"editor.wordWrap": "on",
"editor.quickSuggestions": false
2017-05-10 10:22:05 +02:00
}
}