Skip to content

Commit

Permalink
Use Checkstyle to validate import order
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Oct 9, 2023
1 parent ef8881f commit ae3757d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/conf/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,12 @@
<!-- module name="FinalParameters"/ -->
<module name="TodoComment" />
<module name="UpperEll" />
<module name="ImportOrder">
<property name="option" value="top"/>
<property name="groups" value="java,javax,org"/>
<property name="ordered" value="true"/>
<property name="separated" value="true"/>
</module>

</module>

Expand Down

0 comments on commit ae3757d

Please sign in to comment.