Skip to content

Commit fb605e5

Browse files
committed
exclude brotli stuff from spotbugs and pmd
1 parent 356139c commit fb605e5

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

pmd-ruleset.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
<description>HtmlUnit rules</description>
99
<exclude-pattern>.*/src/test/resources/.*</exclude-pattern>
10+
<exclude-pattern>.*/src/main/java/org/htmlunit/util/brotli/.*</exclude-pattern>
1011

1112
<rule ref="category/java/codestyle.xml/UnnecessaryFullyQualifiedName">
1213
<properties>

spotbugs-exclude.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,9 @@
77
<Bug pattern="EI_EXPOSE_REP2"/>
88

99
<Bug pattern="CT_CONSTRUCTOR_THROW"/>
10+
11+
<!-- Exclude org.htmlunit.util.brotli package -->
12+
<Match>
13+
<Package name="org.htmlunit.util.brotli"/>
14+
</Match>
1015
</FindBugsFilter>

0 commit comments

Comments
 (0)