zardoy / vscode-fix-all-json

Utils & commands for fixing problems in JSON
https://marketplace.visualstudio.com/items?itemName=zardoy.fix-all-json
MIT License
5 stars 2 forks source link

[skip ci] feat: Move to CodeActions model #8

Closed zardoy closed 1 year ago

zardoy commented 1 year ago

feat: Move to CodeActions model Closes #7 BREAKING! Settings runOnSave and runFormatter were removed. Now you need setup codeActionsOnSave to make it work on save, like so:

"editor.codeActionsOnSave": {
  "source.fixAll": true,
}

See linked issue for motivation