Skip to content

Commit 51f0278

Browse files
committed
exclude brotli dir from style check
1 parent 6a539fc commit 51f0278

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/test/java/org/htmlunit/CodeStyleTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ private void addAll(final File dir, final List<File> files) throws IOException {
128128
for (final File child : children) {
129129
if (child.isDirectory()
130130
&& !".git".equals(child.getName())
131+
&& !"brotli".equals(child.getName())
131132
&& !("test".equals(dir.getName()) && "resources".equals(child.getName()))) {
132133
addAll(child, files);
133134
}

0 commit comments

Comments
 (0)