vsc-material-theme/.vscode/settings.json
Alessio Occhipinti bf9a2bb6ed Feat/generator 1 iteration (#397)
* chore: added editor config and fix vscode settings

* fix: eslint and typescript

* chore: cleanup folders (gulp)

* feat: cleanup and working generator
2019-12-23 15:54:32 +01:00

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
}