You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
* Base kind for a 'fix all' source action: `source.fixAll`.
*
* 'Fix all' actions automatically fix errors that have a clear fix that
* do not require user input. They should not suppress errors or perform
* unsafe fixes such as generating new types or classes.
*
* @since 3.17.0
*/
I imagine this would simply invoke regal fix in the given file. One nice thing about this is that editors like VS Code provide options for running all the source.fixAll actions on save.
https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#textDocument_codeAction
I imagine this would simply invoke
regal fix
in the given file. One nice thing about this is that editors like VS Code provide options for running all thesource.fixAll
actions on save.Some good context here.
The text was updated successfully, but these errors were encountered: