mirror of
https://github.com/getrebuild/rebuild.git
synced 2025-02-23 05:45:32 +08:00
19 lines
533 B
JSON
19 lines
533 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/**"]
|
|
}
|