added check for tab characters

This commit is contained in:
Lars Kühne 2002-12-22 12:20:51 +00:00
parent e3c72076fd
commit 333be33007
1 changed files with 4 additions and 1 deletions

View File

@ -104,11 +104,14 @@
<!-- flag reminder comments -->
<module name="TodoComment"/>
<!-- length limits -->
<!-- enforce default length limits -->
<module name="LineLength"/>
<module name="MethodLength"/>
<module name="FileLength"/>
<!-- don't allow tabs -->
<module name="TabCharacter"/>
</module>
<!-- enforce package documentation -->