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


The following commit(s) were added to refs/heads/master by this push:
     new 56395a8a Checkstyle: @author tags are deprecated
56395a8a is described below

commit 56395a8aea629b1c8fec6cd08ea5840703b4c284
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Thu Nov 23 08:50:16 2023 -0500

    Checkstyle: @author tags are deprecated
---
 src/conf/checkstyle.xml | 63 +++++++++++++++++++++++++------------------------
 1 file changed, 32 insertions(+), 31 deletions(-)

diff --git a/src/conf/checkstyle.xml b/src/conf/checkstyle.xml
index d87695d4..f49489e0 100644
--- a/src/conf/checkstyle.xml
+++ b/src/conf/checkstyle.xml
@@ -15,56 +15,57 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either 
express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 -->
-
 <!DOCTYPE module PUBLIC
     "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
     "https://checkstyle.org/dtds/configuration_1_3.dtd";>
 
 <!-- commons lang customization of default Checkstyle behavior -->
 <module name="Checker">
-  <property name="localeLanguage" value="en"/>
-  <module name="JavadocPackage"/>
+  <property name="localeLanguage" value="en" />
+  <module name="JavadocPackage" />
   <module name="NewlineAtEndOfFile">
     <property name="lineSeparator" value="lf" />
   </module>
   <module name="FileTabCharacter">
-    <property name="fileExtensions" value="java,xml"/>
+    <property name="fileExtensions" value="java,xml" />
   </module>
   <module name="RegexpSingleline">
     <!-- \s matches whitespace character, $ matches end of line. -->
-    <property name="format" value="\s+$"/>
-    <property name="message" value="Line has trailing spaces."/>
+    <property name="format" value="\s+$" />
+    <property name="message" value="Line has trailing spaces." />
   </module>
   <module name="SuppressionFilter">
-    <property name="file" value="checkstyle-suppressions.xml"/>
+    <property name="file" value="checkstyle-suppressions.xml" />
   </module>
   <module name="TreeWalker">
-    <module name="AvoidStarImport"/>
-    <module name="IllegalImport"/>
-    <module name="RedundantImport"/>
-    <module name="UnusedImports"/>
-    <module name="NeedBraces"/>
-    <!--
-    <module name="JavadocMethod">
-      <property name="allowUndeclaredRTE" value="true"/>
-      <property name="scope" value="public" />
-    </module>
-     -->
-    <module name="ModifierOrder"/>
-    <module name="RedundantModifier"/>
+    <module name="AvoidStarImport" />
+    <module name="IllegalImport" />
+    <module name="RedundantImport" />
+    <module name="UnusedImports" />
+    <module name="NeedBraces" />
+    <!-- <module name="JavadocMethod"> <property name="allowUndeclaredRTE" 
value="true"/> <property name="scope" value="public" /> </module> -->
+    <module name="ModifierOrder" />
+    <module name="RedundantModifier" />
     <module name="UpperEll" />
-    <module name="LeftCurly"/>
-    <module name="NeedBraces"/>
-    <module name="RightCurly"/>
+    <module name="LeftCurly" />
+    <module name="NeedBraces" />
+    <module name="RightCurly" />
     <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"/>
+      <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="WhitespaceAroundCheck"/>
- </module>
- <module name="LineLength">
-   <property name="max" value="160" />
+    <module name="WhitespaceAroundCheck" />
+  </module>
+  <module name="LineLength">
+    <property name="max" value="160" />
+  </module>
+  <!-- @author tags are deprecated -->
+  <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>

Reply via email to