-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add spotless
plugin
#2537
Add spotless
plugin
#2537
Conversation
Excludes: - Java17RecordTest.java - Java17RecordReflectionTest.java
pom.xml
Outdated
<formats> | ||
<format> | ||
<includes> | ||
<include>*.md</include> | ||
<include>.gitignore</include> | ||
</includes> | ||
<trimTrailingWhitespace/> | ||
<endWithNewline/> | ||
<indent> | ||
<spaces>true</spaces> | ||
<spacesPerTab>4</spacesPerTab> | ||
</indent> | ||
</format> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I kept the <format>
section, let me know if you prefer to remove it (or remove the .md
)
Is this ready to merge? |
If we want keep the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK. We can always adjust this later as needed.
Thanks again for doing this!
Purpose
Add the
spotless
plugins to enforce the Google Java Style Guide.Description
Related with #2284