skip to Main Content

Looking for general advice, as I’m not completely sure what is causing this behavior which I did not encounter until recently. I’m finding it quite annoying because it can delete imports if I comment out a line during development.

2

Answers


  1. Chosen as BEST ANSWER

    Adding the following to your settings.json file (you can access it on Windows with ctrl+shift+p followed by a search for settings)

    "editor.codeActionsOnSave": {
        ... [other settings] ...
        "source.organizeImports": false
    }
    

    Note: ensure that "editor.codeActionsOnSave" is not defined elsewhere (aside from language specific places), as this prevented the fix from working the first time I tried it.


  2. Check your extensions might have the Auto extension or Accessibility extension installed.

    Revert back if this did not work.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search