GitXplorerGitXplorer
z

vscode-fix-all-json

public
5 stars
3 forks
5 issues

Commits

List of commits on branch main.
Unverified
9583769e244e8e363bb0dcc9f1272f4d24f6491d

should fix ci

zzardoy committed 4 months ago
Verified
3057fda5ff778c944af70c9c3689c138706a36b5

fix(readme): Update recommended setting (#21)

qqadzek committed 4 months ago
Verified
164d3573b5bd6e213fcf0776327bb887c849cf5e

Merge pull request #17 from zardoy/next

zzardoy committed 2 years ago
Unverified
c8045300d828273b145a98f4ec1890c89f01ea28

up test framework

zzardoy committed 2 years ago
Unverified
c7ea54ac31451d874de05f0690e3ea1888ac2948

lint

zzardoy committed 2 years ago
Unverified
24110a29e5bfb1eddf9f79d5576497397f40cf70

Merge branch 'fixes' into next

zzardoy committed 2 years ago

README

The README file for this repository.

Fix All JSON

Simple & fast VSCode extension for fixing almost all annoying JSON (and even JSONC!) problems on typing / save.

  • supports virtual workspaces and web
  • simple and fast as it uses the errors you see
  • On-Type Fixes

Enabling Fixing on Save

To enable problems auto fixing on save (which is super useful), ensure you have the following in your settings.json (> Preferences: Open User Settings (JSON)):

"[json][jsonc]": {
  "editor.codeActionsOnSave": ["source.fixAll"]
}

What fixes

All these fixes are configurable and can be disabled in settings:

Error Message Action
Expected comma Insert missing comma
Colon expected Insert missing colon
Trailing comma Remove trailing comma
Comments are not permitted in JSON. (json only) Remove the whole comment (disabled by default)
Property keys must be doublequoted Remove quotes (if have ' or `) and doublequote

Note: missing commas just placed before the error range. Its assumed you have autoformatter enabled to handle the "right positioning"

Note 2: this extension though doesn't do value autoquoting, there is vscode-fix-json for this.

Sometimes builtin JSON extension can be slow. In these cases you need to wait until errors are updated before fixing the file! We can do absolutely nothing about it.

Why not Prettier?

Prettier as formatter does great work on fixing trailing semicolons and quotes problems, however this extension is much faster and has more fixes.

Additional Features

On-Type Fixes

  • Insert missing comma on Enter (or Ctrl+Enter, enabled by default with fixAllJson.insertMissingCommaOnEnter)
  • Insert missing double quotes on : (enabled by default with fixAllJson.insertMissingDoubleQuotesOnColon)