New pre-format checkpoint

This commit is contained in:
Tadgh 2023-06-26 08:07:26 -04:00
parent 318cbb6396
commit 3aafc226a8
1 changed files with 6 additions and 6 deletions

12
pom.xml
View File

@ -2254,16 +2254,16 @@
</format>
</formats>
<java>
<googleJavaFormat>
<version>1.17.0</version>
<style>AOSP</style>
<reflowLongStrings>true</reflowLongStrings>
</googleJavaFormat>
<!--This does the actual code reformatting-->
<palantirJavaFormat/>
<!--After formatting, replace the default 4-space indentation with tabs as per our editorconfig-->
<indent>
<tabs>true</tabs>
<spacesPerTab>3</spacesPerTab>
<spacesPerTab>4</spacesPerTab>
</indent>
<!--Just removes unused imports-->
<removeUnusedImports />
<!--Follow the editorconfig-defined order of imports-->
<importOrder>
<wildcardsLast>true</wildcardsLast>
<order>,java|javax,\#</order>