Adding quickfix.biome
to editor.codeActionsOnSave
slows down saving of *.ts
files
#1664
-
BackgroundThe Biome VS Code extension guides users to add However, enabling this setting causes saving 368225325-56415cd5-d02e-4fd8-acc2-a5dcffb04932.movSurprisingly, this delay occurs even if the Biome extension is not installed. Additionally, disabling the built-in VS Code extension Cause of the delayAs a result of my investigation, I found that the delay is caused by the following code in When
The 500ms wait is because the diagnostics obtained in step 2 might be outdated. If this wait time is removed, code fixes might be performed based on old diagnostics. To prevent this, Furthermore, As an experiment, I commented out the line that waits for 500ms and rebuilt vscode, and the saving of 2024-09-22.16.24.20.movQuestionsI have several questions regarding this delay issue. Q1. Is it acceptable to add
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Is this issue being discussed within VS Code team? |
Beta Was this translation helpful? Give feedback.
-
Sounds like a potential bug. I suggest to open a new issue here https://github.com/microsoft/vscode/issues |
Beta Was this translation helpful? Give feedback.
Sounds like a potential bug. I suggest to open a new issue here https://github.com/microsoft/vscode/issues
Thank you