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-csv.git


The following commit(s) were added to refs/heads/master by this push:
     new bb59de29 Sort Checkstyle modules
bb59de29 is described below

commit bb59de296a53a7af21223420ddf2ea32eaec3db4
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Dec 27 08:28:20 2024 -0500

    Sort Checkstyle modules
---
 src/conf/checkstyle/checkstyle.xml | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/src/conf/checkstyle/checkstyle.xml 
b/src/conf/checkstyle/checkstyle.xml
index f0757eee..33bde226 100644
--- a/src/conf/checkstyle/checkstyle.xml
+++ b/src/conf/checkstyle/checkstyle.xml
@@ -19,27 +19,27 @@ 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="NewlineAtEndOfFile" />
-  <module name="Header">
-    <property name="headerFile" value="${checkstyle.header.file}" />
-  </module>
   <module name="FileTabCharacter">
     <property name="fileExtensions" value="java,xml" />
   </module>
-  <module name="RegexpSingleline">
-    <property name="format" value="\s+$" />
-    <property name="message" value="Line has trailing spaces." />
-    <property name="fileExtensions" value="java" />
+  <module name="Header">
+    <property name="headerFile" value="${checkstyle.header.file}" />
   </module>
+  <property name="localeLanguage" value="en" />
+  <module name="LineLength">
+    <property name="max" value="160"/>
+  </module>
+  <module name="NewlineAtEndOfFile" />
   <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="LineLength">
-    <property name="max" value="160"/>
+  <module name="RegexpSingleline">
+    <property name="format" value="\s+$" />
+    <property name="message" value="Line has trailing spaces." />
+    <property name="fileExtensions" value="java" />
   </module>
   <module name="TreeWalker">
     <module name="AvoidStarImport" />

Reply via email to