diff options
Diffstat (limited to 'checks/egiz_checks.xml')
| -rw-r--r-- | checks/egiz_checks.xml | 16 | 
1 files changed, 6 insertions, 10 deletions
| diff --git a/checks/egiz_checks.xml b/checks/egiz_checks.xml index 6a8e68ef..ad0be35e 100644 --- a/checks/egiz_checks.xml +++ b/checks/egiz_checks.xml @@ -1,13 +1,12 @@  <?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE module PUBLIC "-//Checkstyle//DTD Check Configuration 1.3//EN" "https://apps.egiz.gv.at/checkstyle/configuration_1_3.dtd"> +<!DOCTYPE module PUBLIC "-//Checkstyle//DTD Check Configuration 1.3//EN" "https://checkstyle.org/dtds/configuration_1_3.dtd">  <!--      This configuration file was written by the eclipse-cs plugin configuration editor  -->  <!-- -    Checkstyle-Configuration: Google checks with EGIZ modifications -    Description:  -Checkstyle configuration that checks the Google coding conventions from Google Java Style that can be found at https://google.github.io/styleguide/javaguide.html. +    Checkstyle-Configuration: EGIZ_checkstyle +    Description: none  -->  <module name="Checker">    <property name="severity" value="warning"/> @@ -20,9 +19,6 @@ Checkstyle configuration that checks the Google coding conventions from Google J        <property name="format" value="\\u00(09|0(a|A)|0(c|C)|0(d|D)|22|27|5(C|c))|\\(0(10|11|12|14|15|42|47)|134)"/>        <property name="message" value="Consider using special escape sequence instead of octal value or Unicode escaped value."/>      </module> -    <!-- module name="SuppressionFilter"> -        <property name="file" value="${samedir}/checkstyleSuppress.xml" /> -    </module-->      <module name="AvoidEscapedUnicodeCharacters">        <property name="allowEscapesForControlCharacters" value="true"/>        <property name="allowByTailComment" value="true"/> @@ -180,9 +176,7 @@ Checkstyle configuration that checks the Google coding conventions from Google J      <module name="JavadocMethod">        <property name="allowedAnnotations" value="Override, Test"/>        <property name="scope" value="public"/> -      <property name="allowThrowsTagsForSubclasses" value="true"/> -      <property name="allowMissingParamTags" value="true"/> -      <property name="allowMissingThrowsTags" value="true"/> +      <property name="allowMissingParamTags" value="false"/>        <property name="allowMissingReturnTag" value="true"/>      </module>      <module name="MissingJavadocMethod"> @@ -204,6 +198,8 @@ Checkstyle configuration that checks the Google coding conventions from Google J      <module name="IllegalImport"/>      <module name="RedundantImport"/>      <module name="UnusedImports"/> +    <module name="ParameterNumber"/> +    <module name="RedundantModifier"/>    </module>    <module name="BeforeExecutionExclusionFileFilter">      <property name="fileNamePattern" value="module\-info\.java$"/> | 
