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