26 lines
577 B
JSON
26 lines
577 B
JSON
{
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.svn": true,
|
|
"**/.hg": true,
|
|
"**/CVS": true,
|
|
"**/.DS_Store": true,
|
|
"**/node_modules": true
|
|
},
|
|
"search.exclude": {
|
|
"**/.git": true,
|
|
"**/node_modules": true,
|
|
"**/bower_components": true,
|
|
"**/tmp": true
|
|
},
|
|
"explorerExclude.backup": null,
|
|
"eslint.lintTask.enable": true,
|
|
"eslint.workingDirectories": ["./src"],
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true,
|
|
"source.fixAll": true
|
|
},
|
|
"editor.formatOnSave": true,
|
|
"workbench.editor.labelFormat": "short"
|
|
}
|