LoginSignup
2
3

More than 5 years have passed since last update.

google java format

Posted at

はじめに

javaでformatが整ってないと言われたことはありませんか?
簡単です。build.gradleに以下を追加するだけです。

build.gradle
plugins {
  id 'com.github.sherter.google-java-format' version '0.7.1'
}

プラグインが追加されたか確認します。
Other tasksにgoogleJavaFormatが追加されていると思います。

$ gradle tasks --all
Other tasks
-----------
googleJavaFormat

あとは実行するだけです。

$ gradle tasks googleJavaFormat

はい、綺麗。
もう怒られない。

2
3
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
2
3