rebuild/.vscode/settings.json
2020-04-03 01:03:57 +08:00

34 lines
No EOL
922 B
JSON

{
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true,
"target/**": true,
".eclipse/**": true,
".idea/**": true,
".production/build/**": true,
".production/_temp/**": true,
".production/node_modules/**": true
},
"editor.fontSize": 12,
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.options": {
"configFile": "./.eslintrc.json"
},
"eslint.validate": [
"javascript",
"javascriptreact",
"html"
],
"prettier.eslintIntegration": true,
"workbench.editor.enablePreview": false,
"java.configuration.updateBuildConfiguration": "disabled",
"editor.tokenColorCustomizations": {
"semanticHighlighting": true
},
}