bf9a2bb6ed
* chore: added editor config and fix vscode settings * fix: eslint and typescript * chore: cleanup folders (gulp) * feat: cleanup and working generator
29 lines
672 B
JSON
29 lines
672 B
JSON
{
|
|
"javascript.validate.enable": false,
|
|
"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",
|
|
"editor.quickSuggestions": false
|
|
},
|
|
"xo.enable": false,
|
|
"editor.formatOnSave": false,
|
|
"eslint.enable": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true
|
|
},
|
|
"editor.codeActionsOnSaveTimeout": 2000
|
|
}
|