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

34 lines
750 B
JSON
Raw Normal View History

2018-04-20 20:07:36 +02:00
{
"javascript.validate.enable": false,
2018-04-20 20:07:36 +02:00
"files.exclude": {
"**/.git": true,
".git-crypt": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.js.map": true
},
"files.associations": {
"*.template": "json"
},
"html.format.preserveNewLines": true,
"[markdown]": {
"diffEditor.ignoreTrimWhitespace": false,
"editor.tabSize": 4,
"editor.wordWrap": "on",
2022-12-01 17:04:59 +01:00
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
}
2018-04-20 20:07:36 +02:00
},
"xo.enable": false,
"editor.formatOnSave": false,
"eslint.enable": true,
"editor.codeActionsOnSave": {
2024-03-07 12:43:28 +01:00
"source.fixAll.eslint": "explicit"
},
"editor.codeActionsOnSaveTimeout": 2000
}