diff options
author | Thialfihar <thi@thialfihar.org> | 2014-04-02 13:35:16 +0200 |
---|---|---|
committer | Thialfihar <thi@thialfihar.org> | 2014-04-02 13:37:12 +0200 |
commit | c45c0f4a92750422dda762c70956a7a6fe0b556f (patch) | |
tree | da6a90c9502fbb53cd638b5f6a86925da0ebca1b /tools | |
parent | 77a6c509f70d7c7fb78e22573dd5785ec3895eeb (diff) | |
download | open-keychain-c45c0f4a92750422dda762c70956a7a6fe0b556f.tar.gz open-keychain-c45c0f4a92750422dda762c70956a7a6fe0b556f.tar.bz2 open-keychain-c45c0f4a92750422dda762c70956a7a6fe0b556f.zip |
Add wildcard import warning to checkstyle configuration
Diffstat (limited to 'tools')
-rw-r--r-- | tools/checkstyle.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/checkstyle.xml b/tools/checkstyle.xml index 95ef07a90..c99f858ab 100644 --- a/tools/checkstyle.xml +++ b/tools/checkstyle.xml @@ -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. --> |