buildframework/helium/builder/java/config/java_checkstyle_config.xml
author wbernard
Fri, 13 Aug 2010 14:59:05 +0300
changeset 628 7c4a911dc066
parent 588 c7c26511138f
permissions -rw-r--r--
helium_11.0.0-e00f171ca185
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     1
<?xml version="1.0" encoding="UTF-8"?>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     2
<!-- 
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     3
============================================================================ 
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     4
Name        : java_checkstyle_config.xml 
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     5
Part of     : Helium 
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     6
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     7
Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     8
All rights reserved.
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     9
This component and the accompanying materials are made available
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    10
under the terms of the License "Eclipse Public License v1.0"
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    11
which accompanies this distribution, and is available
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    12
at the URL "http://www.eclipse.org/legal/epl-v10.html".
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    13
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    14
Initial Contributors:
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    15
Nokia Corporation - initial contribution.
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    16
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    17
Contributors:
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    18
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    19
Description:
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    20
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    21
============================================================================
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    22
-->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    23
<!DOCTYPE module PUBLIC
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    24
    "-//Puppy Crawl//DTD Check Configuration 1.2//EN"
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    25
    "http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    26
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    27
<!--
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    28
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    29
  Checkstyle configuration using Eclipse Helium profile
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    30
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    31
-->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    32
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    33
<module name="Checker">
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    34
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    35
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    36
    <!-- Allow exception in the code, but comment is needed -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    37
    <module name="SuppressionCommentFilter" />
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    38
    <module name="SuppressionCommentFilter">
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    39
        <property name="offCommentFormat" value="CheckStyle\:([\w\|]+) OFF"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    40
        <property name="onCommentFormat" value="CheckStyle\:([\w\|]+) ON"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    41
        <property name="checkFormat" value="$1"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    42
    </module>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    43
    
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    44
    <!-- Checks that a package.html file exists for each package.     -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    45
    <!-- See http://checkstyle.sf.net/config_javadoc.html#PackageHtml -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    46
    <!-- module name="PackageHtml"/-->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    47
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    48
    <!-- Checks whether files end with a new line.                        -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    49
    <!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    50
    <!--<module name="NewlineAtEndOfFile"/>-->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    51
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    52
    <!-- Checks that property files contain the same keys.         -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    53
    <!-- See http://checkstyle.sf.net/config_misc.html#Translation -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    54
    <module name="Translation"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    55
    <module name="FileLength"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    56
    <module name="FileTabCharacter"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    57
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    58
    <module name="TreeWalker">
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    59
        <module name="FileContentsHolder"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    60
        
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    61
        <!-- Checks for Javadoc comments.                     -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    62
        <!-- See http://checkstyle.sf.net/config_javadoc.html -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    63
        <!--<module name="JavadocMethod"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    64
        <module name="JavadocVariable"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    65
        <module name="JavadocStyle"/>-->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    66
        
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    67
        <module name="JavadocType">
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    68
           <property name="scope" value="public"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    69
        </module>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    70
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    71
        <!-- Checks for Naming Conventions.                  -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    72
        <!-- See http://checkstyle.sf.net/config_naming.html -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    73
        <module name="ConstantName"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    74
        <module name="LocalFinalVariableName"/>
588
c7c26511138f helium-10.0.0-bc45d50958fe
wbernard
parents: 587
diff changeset
    75
        <module name="LocalVariableName">
c7c26511138f helium-10.0.0-bc45d50958fe
wbernard
parents: 587
diff changeset
    76
            <property name="format" value="^[ij]$|^[a-z][a-zA-Z0-9]+$"/>
c7c26511138f helium-10.0.0-bc45d50958fe
wbernard
parents: 587
diff changeset
    77
            <property name="tokens" value="VARIABLE_DEF"/>
c7c26511138f helium-10.0.0-bc45d50958fe
wbernard
parents: 587
diff changeset
    78
        </module>
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    79
        <module name="MemberName"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    80
        <module name="MethodName"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    81
        <module name="PackageName"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    82
        <module name="ParameterName"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    83
        <module name="StaticVariableName"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    84
        <module name="TypeName"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    85
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    86
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    87
        <!-- Checks for Headers                                -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    88
        <!-- See http://checkstyle.sf.net/config_header.html   -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    89
        <!-- <module name="Header">                            -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    90
            <!-- The follow property value demonstrates the ability     -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    91
            <!-- to have access to ANT properties. In this case it uses -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    92
            <!-- the ${basedir} property to allow Checkstyle to be run  -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    93
            <!-- from any directory within a project. See property      -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    94
            <!-- expansion,                                             -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    95
            <!-- http://checkstyle.sf.net/config.html#properties        -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    96
            <!-- <property                                              -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    97
            <!--     name="headerFile"                                  -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    98
            <!--     value="${basedir}/java.header"/>                   -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    99
        <!-- </module> -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   100
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   101
        <!-- Following interprets the header file as regular expressions. -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   102
        <!-- <module name="RegexpHeader"/>                                -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   103
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   104
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   105
        <!-- Checks for imports                              -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   106
        <!-- See http://checkstyle.sf.net/config_import.html -->
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 588
diff changeset
   107
        <module name="AvoidStarImport">
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 588
diff changeset
   108
            <property name="severity" value="warning"/>
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 588
diff changeset
   109
        </module>
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   110
        <module name="IllegalImport"/> <!-- defaults to sun.* packages -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   111
        <module name="RedundantImport"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   112
        <module name="UnusedImports"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   113
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   114
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   115
        <!-- Checks for Size Violations.                    -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   116
        <!-- See http://checkstyle.sf.net/config_sizes.html -->
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 588
diff changeset
   117
        <module name="LineLength">
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 588
diff changeset
   118
            <property name="max" value="180"/>
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 588
diff changeset
   119
            <property name="ignorePattern" value="^ *\* *[^ ]+$"/>
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 588
diff changeset
   120
            <property name="severity" value="warning"/>
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 588
diff changeset
   121
        </module>
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   122
        <module name="MethodLength"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   123
        <module name="ParameterNumber"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   124
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   125
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   126
        <!-- Checks for whitespace                               -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   127
        <!-- See http://checkstyle.sf.net/config_whitespace.html -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   128
        <!--<module name="EmptyForIteratorPad"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   129
        <module name="MethodParamPad"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   130
        <module name="NoWhitespaceAfter"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   131
        <module name="NoWhitespaceBefore"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   132
        <module name="OperatorWrap"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   133
        <module name="TypecastParenPad"/>
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 588
diff changeset
   134
        <module name="WhitespaceAfter"/>
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 588
diff changeset
   135
        <module name="ParenPad">
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 588
diff changeset
   136
            <property name="severity" value="warning"/>
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 588
diff changeset
   137
        </module>
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 588
diff changeset
   138
        -->
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   139
        <module name="WhitespaceAround"/>
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 588
diff changeset
   140
        <module name="GenericWhitespace"/>
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   141
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   142
        <!-- Modifier Checks                                    -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   143
        <!-- See http://checkstyle.sf.net/config_modifiers.html -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   144
        <module name="ModifierOrder"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   145
        <module name="RedundantModifier"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   146
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   147
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   148
        <!-- Checks for blocks. You know, those {}'s         -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   149
        <!-- See http://checkstyle.sf.net/config_blocks.html -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   150
        <module name="AvoidNestedBlocks"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   151
        <module name="EmptyBlock"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   152
        <!--<module name="LeftCurly">--> 
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 588
diff changeset
   153
        <module name="NeedBraces" />
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   154
        <!--<module name="RightCurly">-->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   155
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   156
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   157
        <!-- Checks for common coding problems               -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   158
        <!-- See http://checkstyle.sf.net/config_coding.html -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   159
        <module name="DoubleCheckedLocking"/>    <!-- MY FAVOURITE -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   160
        <module name="EmptyStatement"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   161
        <module name="EqualsHashCode"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   162
        <!--<module name="HiddenField"/>-->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   163
        <module name="IllegalInstantiation"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   164
        <module name="InnerAssignment"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   165
        <!--<module name="MagicNumber"/>-->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   166
        <module name="MissingSwitchDefault"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   167
        <module name="RedundantThrows"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   168
        <module name="SimplifyBooleanExpression"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   169
        <module name="SimplifyBooleanReturn"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   170
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   171
        <!-- Checks for class design                         -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   172
        <!-- See http://checkstyle.sf.net/config_design.html -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   173
        <!--<module name="DesignForExtension"/>-->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   174
        <module name="FinalClass"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   175
        <module name="HideUtilityClassConstructor"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   176
        <module name="InterfaceIsType"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   177
        <module name="VisibilityModifier"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   178
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   179
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   180
        <!-- Miscellaneous other checks.                   -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   181
        <!-- See http://checkstyle.sf.net/config_misc.html -->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   182
        <module name="ArrayTypeStyle"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   183
        <!--<module name="FinalParameters"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   184
        <module name="GenericIllegalRegexp">
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   185
            <property name="format" value="\s+$"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   186
            <property name="message" value="Line has trailing spaces."/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   187
        </module>-->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   188
        <module name="TodoComment"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   189
        <module name="UpperEll"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   190
        
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   191
        <module name="ExplicitInitialization"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   192
        <module name="UnnecessaryParentheses"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   193
        <module name="DeclarationOrder"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   194
        
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   195
        <module name="StringLiteralEquality"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   196
        
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   197
        <module name="CyclomaticComplexity">
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   198
            <property name="max" value="26"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   199
        </module>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   200
        
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   201
        <module name="SuperFinalize"/>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   202
        
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   203
        <module name="IllegalCatch"/>
588
c7c26511138f helium-10.0.0-bc45d50958fe
wbernard
parents: 587
diff changeset
   204
        
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 588
diff changeset
   205
        <module name="MethodParamPad"/>
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 588
diff changeset
   206
        <module name="Indentation"/>
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   207
    </module>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   208
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   209
</module>