0
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?

【Rails】erbをVSCodeでフォーマットする方法

Last updated at Posted at 2024-07-07

拡張機能をインストール

ERB Formatter/Beautifyという拡張機能をインストールします。

Gemをインストール

上記の拡張機能を使用するためにはHTML Beautifierが必要なのでインストールします。

Gemfile
group :development do
  gem 'htmlbeautifier'
end

bundle install
または、ターミナルで以下のコマンドを実行します。

ターミナル
gem install htmlbeautifier

設定を記述する

settings.jsonに以下の記述を追記します。

settings.json
"[erb]": {
  "editor.defaultFormatter": "aliariff.vscode-erb-beautify",
  "editor.formatOnSave": true
},
"files.associations": {
  "*.html.erb": "erb"
}

// invalid byte sequence in US-ASCII エラーが発生する場合
"vscode-erb-beautify.customEnvVar": {
  "LC_ALL": "en_US.UTF-8"
}

上記の設定を記述するとファイル保存時にフォーマットされるようになります。

0
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
0
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?