mirror of
https://github.com/getrebuild/rebuild.git
synced 2024-11-10 08:55:31 +08:00
26 lines
588 B
JSON
26 lines
588 B
JSON
{
|
|
"editor.fontSize": 12,
|
|
"editor.tabSize": 2,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true
|
|
},
|
|
"eslint.codeAction.showDocumentation": {
|
|
"enable": true
|
|
},
|
|
"eslint.onIgnoredFiles": "warn",
|
|
"eslint.validate": ["javascript", "javascriptreact"],
|
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
|
|
"LineCount.excludes": [
|
|
"**/.vscode/**",
|
|
"**/.idea/**",
|
|
"**/node_modules/**",
|
|
"**/target/**",
|
|
"**/assets/lib/**"
|
|
],
|
|
"editor.formatOnSave": true
|
|
}
|