This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-compress.git
The following commit(s) were added to refs/heads/master by this push:
new be1dd4a82 Sort Checkstyle modules
be1dd4a82 is described below
commit be1dd4a82867d74830c35f36d8f77fc6965e9d22
Author: Gary D. Gregory <[email protected]>
AuthorDate: Fri Dec 27 08:30:12 2024 -0500
Sort Checkstyle modules
---
src/conf/checkstyle.xml | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/src/conf/checkstyle.xml b/src/conf/checkstyle.xml
index 0e62d66ca..660d31ff0 100644
--- a/src/conf/checkstyle.xml
+++ b/src/conf/checkstyle.xml
@@ -19,13 +19,21 @@ limitations under the License.
"-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
"https://checkstyle.org/dtds/configuration_1_3.dtd">
<module name="Checker">
- <property name="localeLanguage" value="en" />
+ <module name="FileTabCharacter">
+ <property name="fileExtensions" value="java,xml" />
+ </module>
<module name="JavadocPackage" />
+ <module name="LineLength">
+ <property name="max" value="160" />
+ </module>
<module name="NewlineAtEndOfFile">
<property name="lineSeparator" value="lf" />
</module>
- <module name="FileTabCharacter">
- <property name="fileExtensions" value="java,xml" />
+ <module name="RegexpSingleline">
+ <property name="format" value="^\s+\*\s+@author\s" />
+ <property name="message" value="Deprecated @author tag" />
+ <property name="fileExtensions" value="java" />
+ <property name="severity" value="warning" />
</module>
<module name="RegexpSingleline">
<property name="format" value="\s+$" />
@@ -58,13 +66,5 @@ limitations under the License.
<module name="WhitespaceAround" />
<module name="WhitespaceAroundCheck" />
</module>
- <module name="LineLength">
- <property name="max" value="160" />
- </module>
- <module name="RegexpSingleline">
- <property name="format" value="^\s+\*\s+@author\s" />
- <property name="message" value="Deprecated @author tag" />
- <property name="fileExtensions" value="java" />
- <property name="severity" value="warning" />
- </module>
+ <property name="localeLanguage" value="en" />
</module>