mirror of
https://github.com/getrebuild/rebuild.git
synced 2025-02-24 14:25:05 +08:00
34 lines
No EOL
922 B
JSON
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
|
|
},
|
|
} |