mirror of
https://github.com/mapstruct/mapstruct.git
synced 2025-07-12 00:00:08 +08:00
With this we can more easily go in the direction of using constructor to map into target beans.
215 lines
8.5 KiB
XML
215 lines
8.5 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE module PUBLIC
|
|
"-//Puppy Crawl//DTD Check Configuration 1.2//EN"
|
|
"http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
|
|
|
|
<!-- Based on sun_checks.xml from the CheckStyle distribution -->
|
|
|
|
<module name="Checker">
|
|
<!--
|
|
If you set the basedir property below, then all reported file
|
|
names will be relative to the specified directory. See
|
|
http://checkstyle.sourceforge.net/5.x/config.html#Checker
|
|
|
|
<property name="basedir" value="${basedir}"/>
|
|
-->
|
|
|
|
<property name="cacheFile" value="${checkstyle.cache.file}"/>
|
|
|
|
<!-- Checks that each Java package has a Javadoc file used for commenting. -->
|
|
<!-- See http://checkstyle.sf.net/config_javadoc.html#JavadocPackage -->
|
|
<!--
|
|
<module name="JavadocPackage">
|
|
<property name="allowLegacy" value="true"/>
|
|
</module>
|
|
-->
|
|
|
|
<!-- Checks that property files contain the same keys. -->
|
|
<!-- See http://checkstyle.sf.net/config_misc.html#Translation -->
|
|
<module name="Translation"/>
|
|
|
|
<module name="FileLength"/>
|
|
|
|
<module name="LineLength">
|
|
<property name="max" value="120"/>
|
|
<property name="fileExtensions" value="java" />
|
|
</module>
|
|
|
|
<module name="SuppressWithPlainTextCommentFilter"/>
|
|
|
|
<!-- Following interprets the header file as regular expressions. -->
|
|
<!-- <module name="RegexpHeader"/> -->
|
|
|
|
<module name="FileTabCharacter">
|
|
<property name="eachLine" value="true"/>
|
|
</module>
|
|
|
|
<!-- Not using NewLineAtEndOfFile as it doesn't work across all platforms
|
|
in conjunction with git's automatic handling of line endings. This rule fails
|
|
if there is a non-whitespace character at the end of the file; Together with
|
|
the next rule which forbids trailing whitespace characters this enforces a
|
|
new line at the end of the file -->
|
|
<module name="RegexpMultiline">
|
|
<property name="format" value="\S\z" />
|
|
<property name="message" value="There is no new line at the end of file" />
|
|
</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"/>
|
|
</module>
|
|
|
|
<module name="RegexpSingleline">
|
|
<!-- do not allow a package declaration that contains ".target." or "target;" -->
|
|
<property name="format" value="^package .*\.target[\.;]"/>
|
|
<property name="message" value="Do not use "target" as package name element"/>
|
|
</module>
|
|
|
|
<module name="TreeWalker">
|
|
|
|
<module name="SuppressWarningsHolder"/>
|
|
|
|
<!-- Checks for Javadoc comments. -->
|
|
<!-- See http://checkstyle.sf.net/config_javadoc.html -->
|
|
<!-- <module name="JavadocMethod"/> -->
|
|
<!-- <module name="JavadocType"/> -->
|
|
<!-- <module name="JavadocVariable"/> -->
|
|
<!-- <module name="JavadocStyle"/> -->
|
|
|
|
|
|
<!-- Checks for Naming Conventions. -->
|
|
<!-- See http://checkstyle.sf.net/config_naming.html -->
|
|
<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"/>
|
|
|
|
|
|
<!-- Checks for Headers -->
|
|
<!-- See http://checkstyle.sf.net/config_header.html -->
|
|
<!-- <module name="Header"> -->
|
|
<!-- The follow property value demonstrates the ability -->
|
|
<!-- to have access to ANT properties. In this case it uses -->
|
|
<!-- the ${basedir} property to allow Checkstyle to be run -->
|
|
<!-- from any directory within a project. See property -->
|
|
<!-- expansion, -->
|
|
<!-- http://checkstyle.sf.net/config.html#properties -->
|
|
<!-- <property -->
|
|
<!-- name="headerFile" -->
|
|
<!-- value="${basedir}/java.header"/> -->
|
|
<!-- </module> -->
|
|
|
|
|
|
<!-- Checks for imports -->
|
|
<!-- See http://checkstyle.sf.net/config_import.html -->
|
|
<module name="AvoidStarImport"/>
|
|
<module name="IllegalImport"/> <!-- defaults to sun.* packages -->
|
|
<module name="RedundantImport"/>
|
|
<module name="UnusedImports">
|
|
<property name="processJavadoc" value="true"/>
|
|
</module>
|
|
<module name="ImportControl">
|
|
<property name="file" value="${basedir}/../build-config/src/main/resources/build-config/import-control.xml" />
|
|
</module>
|
|
|
|
|
|
<!-- Checks for Size Violations. -->
|
|
<!-- See http://checkstyle.sf.net/config_sizes.html -->
|
|
<module name="MethodLength">
|
|
<property name="max" value="200"/>
|
|
</module>
|
|
<module name="ParameterNumber">
|
|
<property name="max" value="10"/>
|
|
</module>
|
|
|
|
|
|
<!-- Checks for whitespace -->
|
|
<!-- See http://checkstyle.sf.net/config_whitespace.html -->
|
|
<module name="EmptyForIteratorPad">
|
|
<property name="option" value="space" />
|
|
</module>
|
|
<module name="MethodParamPad"/>
|
|
<module name="NoWhitespaceAfter">
|
|
<property name="tokens" value="BNOT, DEC, DOT, INC, LNOT, UNARY_MINUS, UNARY_PLUS"/>
|
|
</module>
|
|
<module name="NoWhitespaceBefore"/>
|
|
<!-- <module name="OperatorWrap"/> -->
|
|
<module name="ParenPad">
|
|
<property name="tokens" value="CTOR_CALL, METHOD_CALL, SUPER_CTOR_CALL"/>
|
|
<property name="option" value="space"/>
|
|
</module>
|
|
<module name="TypecastParenPad"/>
|
|
<module name="WhitespaceAfter"/>
|
|
<module name="WhitespaceAround"/>
|
|
|
|
<module name="EmptyLineSeparator">
|
|
<property name="tokens" value="IMPORT, CLASS_DEF, INTERFACE_DEF, STATIC_INIT, INSTANCE_INIT, METHOD_DEF, CTOR_DEF, VARIABLE_DEF"/>
|
|
<property name="allowNoEmptyLineBetweenFields" value="true"/>
|
|
<property name="allowMultipleEmptyLines" value="false"/>
|
|
</module>
|
|
|
|
<!-- Modifier Checks -->
|
|
<!-- See http://checkstyle.sf.net/config_modifiers.html -->
|
|
<module name="ModifierOrder"/>
|
|
<module name="RedundantModifier"/>
|
|
|
|
|
|
<!-- Checks for blocks. You know, those {}'s -->
|
|
<!-- See http://checkstyle.sf.net/config_blocks.html -->
|
|
<module name="AvoidNestedBlocks"/>
|
|
<module name="EmptyBlock"/>
|
|
<module name="LeftCurly"/>
|
|
<module name="NeedBraces"/>
|
|
<module name="RightCurly">
|
|
<property name="option" value="alone"/>
|
|
</module>
|
|
|
|
|
|
<!-- Checks for common coding problems -->
|
|
<!-- See http://checkstyle.sf.net/config_coding.html -->
|
|
<!-- <module name="AvoidInlineConditionals"/> -->
|
|
<module name="EmptyStatement"/>
|
|
<module name="EqualsHashCode"/>
|
|
<!-- <module name="HiddenField"/> -->
|
|
<module name="IllegalInstantiation"/>
|
|
<module name="InnerAssignment"/>
|
|
<!-- <module name="MagicNumber"/> -->
|
|
<module name="MissingSwitchDefault"/>
|
|
<!-- <module name="RedundantThrows"/> -->
|
|
<module name="SimplifyBooleanExpression"/>
|
|
<module name="SimplifyBooleanReturn"/>
|
|
|
|
|
|
<!-- Checks for class design -->
|
|
<!-- See http://checkstyle.sf.net/config_design.html -->
|
|
<!-- <module name="DesignForExtension"/> -->
|
|
<!-- <module name="FinalClass"/> -->
|
|
<module name="HideUtilityClassConstructor"/>
|
|
<module name="InterfaceIsType"/>
|
|
<module name="VisibilityModifier">
|
|
<property name="packageAllowed" value="true" />
|
|
<property name="protectedAllowed" value="true" />
|
|
</module>
|
|
|
|
|
|
<!-- Miscellaneous other checks. -->
|
|
<!-- See http://checkstyle.sf.net/config_misc.html -->
|
|
<module name="ArrayTypeStyle"/>
|
|
<!-- <module name="FinalParameters"/> -->
|
|
<!-- <module name="TodoComment"/> -->
|
|
<module name="UpperEll"/>
|
|
|
|
<module name="SuppressionCommentFilter"/>
|
|
</module>
|
|
|
|
<module name="SuppressWarningsFilter"/>
|
|
|
|
</module>
|