Enforce no leading or trailing spurious whitespace

This commit is contained in:
Andrew Gaul 2014-08-26 11:16:24 -07:00
parent 9c2c2e0c44
commit bf678edb97
1 changed files with 5 additions and 0 deletions

View File

@ -35,6 +35,11 @@
-->
<module name="ModifierOrder"/>
<module name="MultipleVariableDeclarations"/>
<module name="NoWhitespaceAfter">
<!-- ARRAY_INIT disabled -->
<property name="tokens" value="BNOT, DEC, DOT, INC, LNOT, UNARY_MINUS, UNARY_PLUS"/>
</module>
<module name="NoWhitespaceBefore"/>
<module name="RedundantImport"/>
<module name="RedundantModifier">
<!-- VARIABLE_DEF disabled -->