Skip to content

Releases: zardoy/vscode-fix-all-json

v0.1.6

08 Sep 22:33
Compare
Choose a tag to compare

Bug Fixes

  • readme: Update recommended setting (#21)

v0.1.5

20 Jun 22:17
164d357
Compare
Choose a tag to compare

New Features

  • provide a way to disable fixAllJson on save via editor.codeActionsOnSave setting switch 164d357

Bug Fixes

  • comma-on-enter: always ignore last line (fixes final newline comma with array) 164d357
  • make extension work with localized VS Code. Only wrap in quotes doesn't work in this case as json diagnostic doesn't have a code (upstream issue) 164d357
  • always ignore last line (fixes final newline with array) 952e501

v0.1.4

09 Dec 13:52
4ed6bf9
Compare
Choose a tag to compare

Bug Fixes

  • commaOnEnter: don't add comma after last }
    It is important when final newline added because of "files.insertFinalNewline": true 2ee156c

v0.1.3

25 Nov 21:17
577ebc5
Compare
Choose a tag to compare

New Features

  • Insert missing double quotes on colon (#11)
    Enabled by default. 577ebc5

v0.1.2

24 Nov 19:58
4b616d3
Compare
Choose a tag to compare

Bug Fixes

  • Comma on Enter should work with CRLF eol (#12)

v0.1.1

24 Nov 05:25
Compare
Choose a tag to compare

Bug Fixes

  • double quote fix sometimes was removing outer letters by mistake when property key contained two ' 30a39cb

v0.1.0

23 Nov 23:14
883dda4
Compare
Choose a tag to compare

💥 BREAKING CHANGES

  • Move to CodeActions model (#8)
    Closes #7
    ! Settings runOnSave and runFormatter removed. Now you need setup codeActionsOnSave to make it work on save, like so:
"editor.codeActionsOnSave": {
"source.fixAll": true,
}

See linked issue for motivation 5f509a5

New Features

  • Insert Missing Comma on Enter (#6)
    Comes with comments support. Enabled by default for json and jsonc, you can disable it with new insertMissingCommaOnEnter setting.
    Fix #5 883dda4

v0.0.8

27 Jul 01:01
456eefe
Compare
Choose a tag to compare

Bug Fixes

v0.0.7

26 Jul 23:18
ab22ccf
Compare
Choose a tag to compare

New Features

  • add extension icon and changelog (#3)

v0.0.6

06 May 15:39
Compare
Choose a tag to compare

Bug Fixes

  • don't perform fixes on auto save after delay 9bf1d58