Skip to content

Commit

Permalink
Merge pull request #1278 from avano/checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
avano authored Jan 2, 2025
2 parents da7d17b + 581bc38 commit 8b93e8e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
6 changes: 5 additions & 1 deletion checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@
"-//Puppy Crawl//DTD Check Configuration 1.3//EN"
"http://www.puppycrawl.com/dtds/configuration_1_3.dtd">

<!-- CheckStyle configuration for Red Hat JBoss Middleware QA -->
<!-- CheckStyle configuration -->
<module name="Checker">
<module name="SuppressionFilter">
<!-- path to the file is relative to the pwd when running the checkstyle, not to the checkstyle.xml file -->
<property name="file" value="checkstyle/suppressions.xml"/>
</module>

<module name="FileTabCharacter"/>

Expand Down
9 changes: 9 additions & 0 deletions checkstyle/suppressions.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0"?>
<!DOCTYPE suppressions PUBLIC
"-//Checkstyle//DTD Suppressions 1.2//EN"
"https://checkstyle.org/dtds/suppressions_1_2.dtd">

<suppressions>
<!-- Suppress all checks for generated files -->
<suppress checks=".*" files=".*generated.*"/>
</suppressions>

0 comments on commit 8b93e8e

Please sign in to comment.