checkstyle: exclude *.properties files from check - for some unknown reason (to me, at least) *.properties file were included in the report

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/fileupload/trunk@1457989 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/checkstyle/checkstyle-suppressions.xml b/src/checkstyle/checkstyle-suppressions.xml
index 45a9b1a..ddacad7 100644
--- a/src/checkstyle/checkstyle-suppressions.xml
+++ b/src/checkstyle/checkstyle-suppressions.xml
@@ -20,4 +20,5 @@
 -->
 <suppressions>
   <suppress checks="MagicNumber" files="(Base64|QuotedPrintable)Decoder.java" lines="0-9999"/>
+  <suppress checks="[a-zA-Z0-9]*" files=".+\.properties" />
 </suppressions>