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?

VSCodeでJavaのフォーマッタを設定する

Posted at

はじめに

  • VSCodeでJavaのフォーマッタを設定する方法を調べたので、その備忘録。

前提

  • 以下の拡張機能をインストールしておく。

VSCodeの設定変更

  • ctrl + shit + p で「Preferences: Open User Settings (JSON)」を開く。
  • 以下の内容を追記。
// ファイル保存時に自動でフォーマットする
"editor.formatOnSave": true,
// ペースト時に自動でフォーマットする
"editor.formatOnPaste": true,
// Javaのファイルのフォーマッタを指定
"[java]": {
  "editor.defaultFormatter": "redhat.java"
},
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?