Skip to content

Instantly share code, notes, and snippets.

@shiftgeist
Created January 20, 2026 13:05
Show Gist options
  • Select an option

  • Save shiftgeist/c10ef69a8f2e0d1c856e61b382b812e8 to your computer and use it in GitHub Desktop.

Select an option

Save shiftgeist/c10ef69a8f2e0d1c856e61b382b812e8 to your computer and use it in GitHub Desktop.
VSCode: You might not need a plugin for that

You don't need

Javascript/Typescript Sorting

Use command Organize Imports

Run on save - settings.json:

"editor.codeActionsOnSave": {
  "source.organizeImports": "explicit"
}

JSON Sorting

Use command JSON: Sort Document

Run on save - settings.json:

"editor.codeActionsOnSave": {
  "source.sort.json": "explicit"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment