Add wildcard import warning to checkstyle configuration

This commit is contained in:
Thialfihar 2014-04-02 13:35:16 +02:00
parent 77a6c509f7
commit c45c0f4a92
1 changed files with 7 additions and 1 deletions

View File

@ -12,7 +12,6 @@ page at http://checkstyle.sourceforge.net/config.html -->
<module name="SuppressionFilter">
<property name="file" value="tools/suppressions.xml"/>
</module>
<module name="RegexpSingleline">
<!-- Requires a copyright notice in each file.
Code intended to be open-sourced may have a multi-line copyright
@ -32,6 +31,13 @@ page at http://checkstyle.sourceforge.net/config.html -->
<property name="severity" value="error"/>
</module>
<module name="RegexpSingleline">
<property name="format" value="^import.*\*.*$"/>
<property name="message" value="Wildcard imports are not ideal."/>
<property name="severity" value="warning"/>
</module>
<module name="FileTabCharacter">
<!-- Checks that there are no tab characters in the file.
-->