[java-idp-plugin-vci] 05/08: Prepare for running checkstyle

Codeberg noreply at shibboleth.net
Fri Sep 4 08:37:34 UTC 2026


This is an automated email from the git hooks/post-receive script.

codeberg pushed a commit to branch dev/CHECKSTYLE
in repository java-idp-plugin-vci.

View the commit online:
https://codeberg.org/Shibboleth/java-idp-plugin-vci/commit/748c202cd5f9c81bcc386259d3c1bbf832cc66b7

commit 748c202cd5f9c81bcc386259d3c1bbf832cc66b7
Author: Janne Lauros <janne.lauros at csc.fi>
AuthorDate: Fri Sep 4 09:50:01 2026 +0300

    Prepare for running checkstyle
---
 checkstyle.xml | 122 ---------------------------------------------------------
 1 file changed, 122 deletions(-)

diff --git a/checkstyle.xml b/checkstyle.xml
deleted file mode 100644
index f456c13..0000000
--- a/checkstyle.xml
+++ /dev/null
@@ -1,122 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN" "http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
-
-<!--
-    This configuration file was written by the eclipse-cs plugin configuration editor
--->
-<!--
-    Checkstyle-Configuration: Shibboleth Checkstyle
-    Description: none
--->
-<module name="Checker">
-  <property name="severity" value="warning"/>
-  <module name="SuppressWithPlainTextCommentFilter">
-    <property name="offCommentFormat" value="\bCheck[Ss]tyle:\s*([\w|]+)\s+OFF\b"/>
-    <property name="onCommentFormat" value="\bCheck[Ss]tyle:\s*([\w|]+)\s+ON\b"/>
-    <property name="checkFormat" value="$1"/>
-  </module>
-  <module name="TreeWalker">
-    <property name="tabWidth" value="4"/>
-    <module name="JavadocMethod"/>
-    <module name="JavadocType">
-        <property name="allowUnknownTags" value="true"/>
-    </module>
-    <module name="JavadocVariable"/>
-    <module name="JavadocStyle">
-      <property name="checkEmptyJavadoc" value="true"/>
-    </module>
-    <module name="ConstantName"/>
-    <module name="LocalFinalVariableName"/>
-    <module name="LocalVariableName"/>
-    <module name="MemberName"/>
-    <module name="MethodName"/>
-    <module name="PackageName"/>
-    <module name="ParameterName"/>
-    <module name="StaticVariableName"/>
-    <module name="TypeName"/>
-    <module name="AvoidStarImport"/>
-    <module name="IllegalImport"/>
-    <module name="RedundantImport"/>
-    <module name="UnusedImports"/>
-    <module name="MethodLength">
-      <property name="max" value="70"/>
-    </module>
-    <module name="ParameterNumber">
-      <property name="max" value="5"/>
-    </module>
-    <module name="EmptyForIteratorPad"/>
-    <module name="MethodParamPad"/>
-    <module name="ModifierOrder"/>
-    <module name="AvoidNestedBlocks"/>
-    <module name="LeftCurly"/>
-    <module name="NeedBraces"/>
-    <module name="RightCurly"/>
-    <module name="EmptyStatement"/>
-    <module name="EqualsHashCode"/>
-    <module name="HiddenField"/>
-    <module name="IllegalInstantiation"/>
-    <module name="InnerAssignment"/>
-    <module name="MissingSwitchDefault"/>
-    <module name="SimplifyBooleanExpression"/>
-    <module name="SimplifyBooleanReturn"/>
-    <module name="FinalClass"/>
-    <module name="HideUtilityClassConstructor"/>
-    <module name="VisibilityModifier"/>
-    <module name="ArrayTypeStyle"/>
-    <module name="UpperEll"/>
-    <module name="AnonInnerLength"/>
-    <module name="EmptyForInitializerPad"/>
-    <module name="CovariantEquals"/>
-    <module name="DefaultComesLast"/>
-    <module name="DeclarationOrder"/>
-    <module name="ExplicitInitialization"/>
-    <module name="FallThrough"/>
-    <module name="IllegalThrows"/>
-    <module name="MultipleVariableDeclarations"/>
-    <module name="PackageDeclaration"/>
-    <module name="ParameterAssignment"/>
-    <module name="ReturnCount">
-      <property name="max" value="8"/>
-      <property name="maxForVoid" value="8"/>
-    </module>
-    <module name="StringLiteralEquality"/>
-    <module name="SuperFinalize"/>
-    <module name="ArrayTrailingComma"/>
-    <module name="UnnecessaryParentheses"/>
-    <module name="MutableException"/>
-    <module name="ThrowsCount">
-      <property name="max" value="3"/>
-    </module>
-    <module name="CyclomaticComplexity"/>
-    <module name="TrailingComment"/>
-    <module name="EqualsAvoidNull"/>
-    <module name="ModifiedControlVariable"/>
-    <module name="FinalParameters">
-      <property name="tokens" value="METHOD_DEF,CTOR_DEF,LITERAL_CATCH"/>
-    </module>
-    <module name="FinalLocalVariable">
-      <property name="tokens" value="PARAMETER_DEF,VARIABLE_DEF"/>
-      <property name="validateEnhancedForLoopVariable" value="true"/>
-    </module>
-    <module name="SuppressionCommentFilter">
-      <property name="offCommentFormat" value="\bCheck[Ss]tyle:\s*([\w|]+)\s+OFF\b"/>
-      <property name="onCommentFormat" value="\bCheck[Ss]tyle:\s*([\w|]+)\s+ON\b"/>
-      <property name="checkFormat" value="$1"/>
-    </module>
-    <module name="MissingJavadocMethod"/>
-    <module name="MissingJavadocPackage"/>
-    <module name="MissingJavadocType"/>
-    <module name="InvalidJavadocPosition"/>
-  </module>
-  <module name="FileTabCharacter"/>
-  <module name="FileLength">
-    <property name="max" value="1000"/>
-  </module>
-  <module name="Header">
-    <property name="header" value="/*\n * Licensed under the Apache License, Version 2.0 (the "License");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *    http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an "AS IS" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, eit [...]
-  </module>
-  <module name="JavadocPackage"/>
-  <module name="LineLength">
-    <property name="max" value="120"/>
-  </module>
-</module>

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list