misogi / vscode-ruby-rubocop

Rubocop extension for Visual Studio Code
https://marketplace.visualstudio.com/items/misogi.ruby-rubocop
MIT License
137 stars 68 forks source link

Disable formatter option #98

Open ypresto opened 5 years ago

ypresto commented 5 years ago

I enabled formatOnSave but with ruby-rubocop extension editor will freeze a few seconds after save. I don't want to disable formatOnSave as it works well with prettier (JS). Can we add a disable (or enable) formatter option for this extension?

nicbet commented 4 years ago

I was able to remove the slowness on saving due to rubocop extension auto-formatting with these settings:

"[ruby]": {
    "editor.formatOnSave": false
  }