Skip to content

Commit

Permalink
Sort Checkstyle modules
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jan 9, 2025
1 parent 1d9f13f commit 5cdaddf
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions src/conf/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,25 +32,6 @@ limitations under the License.
<property name="max" value="160"/>
</module>
<module name="NewlineAtEndOfFile" />
<module name="TreeWalker">
<module name="ExplicitInitializationCheck" />
<module name="AvoidStarImport"/>
<module name="RedundantImport"/>
<module name="UnusedImports"/>
<module name="NeedBraces"/>
<module name="JavadocType">
<property name="scope" value="protected"/>
</module>
<module name="JavadocMethod">
<property name="accessModifiers" value="protected"/>
</module>
<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>
<!-- Line with trailing spaces -->
<module name="RegexpSingleline">
<property name="format" value="\s+$"/>
Expand All @@ -63,5 +44,24 @@ limitations under the License.
<property name="fileExtensions" value="java" />
<property name="severity" value="warning" />
</module>
<module name="TreeWalker">
<module name="AvoidStarImport"/>
<module name="ExplicitInitializationCheck" />
<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 name="JavadocType">
<module name="JavadocMethod">
<property name="accessModifiers" value="protected"/>
</module>
<module name="NeedBraces"/>
<module name="RedundantImport"/>
<module name="UnusedImports"/>
<property name="scope" value="protected"/>
</module>
</module>
<property name="localeLanguage" value="en"/>
</module>

0 comments on commit 5cdaddf

Please sign in to comment.