mirror of
https://github.com/facebook/lexical.git
synced 2025-08-06 16:39:33 +08:00
12 lines
331 B
JSON
12 lines
331 B
JSON
{
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"javascript.validate.enable": false,
|
|
"[javascript][typescript]": {
|
|
"editor.codeActionsOnSave": [
|
|
// Run ESLint fixers _before_ prettier to ensure the user doesn't need to do multiple saves
|
|
"source.fixAll.eslint",
|
|
"source.fixAll.format"
|
|
]
|
|
}
|
|
}
|