Skip to content

Instantly share code, notes, and snippets.

@vanduc1102
Last active August 9, 2022 07:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vanduc1102/2cc0563c6c1e181c81a4dba5829c166e to your computer and use it in GitHub Desktop.
Save vanduc1102/2cc0563c6c1e181c81a4dba5829c166e to your computer and use it in GitHub Desktop.
google code format with spotless
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>2.24.0</version>
<configuration>
<formats>
<format>
<includes>
<include>*.md</include>
<include>.gitignore</include>
</includes>
<trimTrailingWhitespace/>
<endWithNewline/>
</format>
</formats>
<java>
<importOrder/>
<removeUnusedImports/>
<googleJavaFormat>
<version>1.15.0</version>
<style>GOOGLE</style>
<reflowLongStrings>true</reflowLongStrings>
</googleJavaFormat>
</java>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment