1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

VsCode / Cursor + Rubocop ( ruby-rubocop-revived ) でRubyファイルの保存が非常に重い

Posted at

問題

ファイルによっては、Rubyファイル保存がすごく重い場合がある。

.vscode/settings.json の設定は以下のようにしていた。

{
  "editor.codeActionsOnSave": {
    "source.fixAll": "explicit"
  },
  "[ruby]": {
    "editor.defaultFormatter": "LoranKloeze.ruby-rubocop-revived",
  }
}

解決

editor.codeActionsOnSave の項目を削除することで解決した。

{
  "[ruby]": {
    "editor.defaultFormatter": "LoranKloeze.ruby-rubocop-revived",
  }
}

この項目を削除しても、Rubocopによるフォーマットはちゃんとしてくれるようだ。

何がどう干渉していたのかは不明。

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

プロフィール・経歴

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?