Skip to content

Commit 0cf2a23

Browse files
committed
format
1 parent 823952f commit 0cf2a23

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

docusaurus.config.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,12 @@ const config: Config = {
4949
excludeRaw(rule);
5050
if (Array.isArray(rule.oneOf))
5151
rule.oneOf.forEach((r) => {
52-
if (r && typeof r === "object" && r.test instanceof RegExp && r.test.test(".js"))
52+
if (
53+
r &&
54+
typeof r === "object" &&
55+
r.test instanceof RegExp &&
56+
r.test.test(".js")
57+
)
5358
excludeRaw(r);
5459
});
5560
}

0 commit comments

Comments
 (0)