Skip to content

Commit b64f7d4

Browse files
committed
ci: Format code
1 parent 757669f commit b64f7d4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

codegen/validate-redirects.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ interface Redirect {
1414
target: string
1515
}
1616

17-
const redirects: Redirect[] = Object.entries(
18-
gitbookConfig.redirects ?? {},
19-
).map(([source, target]) => ({ source, target }))
17+
const redirects: Redirect[] = Object.entries(gitbookConfig.redirects ?? {}).map(
18+
([source, target]) => ({ source, target }),
19+
)
2020

2121
// Check if a path resolves to a page as a file, URL slug, or directory index.
2222
function pageExists(fullPath: string): boolean {

0 commit comments

Comments
 (0)