You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ki...@apache.org on 2022/05/09 07:31:13 UTC

[commons-imaging] 03/03: Suppress NewlineAtEndOfFile for a build file, to suppress an error in Checkstyle on Windows

This is an automated email from the ASF dual-hosted git repository.

kinow pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-imaging.git

commit c33ef79cd2026b5b622102c8c7ebc9eebdd5b899
Author: Bruno P. Kinoshita <ki...@apache.org>
AuthorDate: Mon May 9 19:09:43 2022 +1200

    Suppress NewlineAtEndOfFile for a build file, to suppress an error in Checkstyle on Windows
---
 checkstyle-suppressions.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/checkstyle-suppressions.xml b/checkstyle-suppressions.xml
index 4dc5200e..105df667 100644
--- a/checkstyle-suppressions.xml
+++ b/checkstyle-suppressions.xml
@@ -20,4 +20,6 @@ limitations under the License.
     <suppress checks="JavadocMethod" files=".*[/\\]test[/\\].*"/>
     <suppress checks="JavadocPackage" files=".*[/\\]test[/\\].*"/>
     <suppress checks="MagicNumber" files="ColorConversions.java"/>
+    <!-- Due to fail in Checkstyle on Windows, in GH Actions -->
+    <suppress checks="NewlineAtEndOfFile" files="target[/\\]maven-archiver[/\\]pom.properties"/>
 </suppressions>