HADOOP-12713. Disable spurious checkstyle checks.

This commit is contained in:
Andrew Wang 2016-01-15 11:58:56 -08:00
parent c07f7fa8ff
commit 5d5a22a878
2 changed files with 9 additions and 5 deletions

View File

@ -61,7 +61,8 @@
<!-- See http://checkstyle.sf.net/config_misc.html#Translation -->
<module name="Translation"/>
<module name="FileLength"/>
<!-- We have many existing long files, this check ends up being spurious -->
<!--<module name="FileLength">-->
<module name="FileTabCharacter"/>
<module name="TreeWalker">
@ -130,13 +131,14 @@
<module name="ParenPad"/>
<module name="TypecastParenPad"/>
<module name="WhitespaceAfter">
<property name="tokens" value="COMMA, SEMI"/>
</module>
<property name="tokens" value="COMMA, SEMI"/>
</module>
<!-- Modifier Checks -->
<!-- See http://checkstyle.sf.net/config_modifiers.html -->
<module name="ModifierOrder"/>
<!-- This one is nitty, disable -->
<!-- <module name="ModifierOrder"/> -->
<module name="RedundantModifier"/>
@ -178,7 +180,7 @@
<property name="basicOffset" value="2" />
<property name="caseIndent" value="0" />
</module>
<module name="TodoComment"/>
<!--<module name="TodoComment"/>-->
<module name="UpperEll"/>
</module>

View File

@ -669,6 +669,8 @@ Release 2.9.0 - UNRELEASED
HADOOP-8887. Use a Maven plugin to build the native code using CMake
(cmccabe)
HADOOP-12713. Disable spurious checkstyle checks. (wang)
BUG FIXES
HADOOP-12655. TestHttpServer.testBindAddress bind port range is wider