Skip to content

Commit 0aa1b64

Browse files
ElianCodesastrobot-houston
authored andcommitted
[ci] format
1 parent d96e972 commit 0aa1b64

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

scripts/lib/linkcheck/steps/build-index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import fs from 'fs';
22
import path from 'path';
33
import { dedentMd } from '../../output.mjs';
44
import type { LinkCheckerOptions } from '../base/base';
5-
import { type AllPagesByPathname, HtmlPage } from '../base/page';
5+
import { HtmlPage, type AllPagesByPathname } from '../base/page';
66

77
/**
88
* Reads sitemaps from the build output and extracts all unique pathnames.

scripts/lib/linkcheck/steps/find-issues.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import fs from 'fs';
22
import path from 'path';
33
import { dedentMd } from '../../output.mjs';
4-
import { indexOfHref, type LinkCheckerOptions, LinkCheckerState } from '../base/base';
4+
import { indexOfHref, LinkCheckerState, type LinkCheckerOptions } from '../base/base';
55
import type { LinkIssue } from '../base/issue';
66
import type { AllPagesByPathname, HtmlPage } from '../base/page';
77

scripts/lib/linkcheck/steps/optional-autofix.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import fs from 'fs';
22
import kleur from 'kleur';
33
import { dedentMd, formatCount } from '../../output.mjs';
4-
import { type LinkCheckerOptions, LinkCheckerState, replaceHrefs } from '../base/base';
4+
import { LinkCheckerState, replaceHrefs, type LinkCheckerOptions } from '../base/base';
55
import type { LinkIssue } from '../base/issue';
66

77
/**

scripts/lint-linkcheck.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type LinkCheckerOptions, LinkCheckerState } from './lib/linkcheck/base/base';
1+
import { LinkCheckerState, type LinkCheckerOptions } from './lib/linkcheck/base/base';
22
import { CanonicalUrl } from './lib/linkcheck/checks/canonical-url';
33
import { GoodLabels } from './lib/linkcheck/checks/good-link-label';
44
import { RelativeUrl } from './lib/linkcheck/checks/relative-url';

src/components/internal/rehype-file-tree.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
import type { Element } from 'hast';
12
import { fromHtml } from 'hast-util-from-html';
23
import { toString } from 'hast-util-to-string';
34
import { h, type Child } from 'hastscript';
4-
import type { Element } from 'hast';
55
import { rehype } from 'rehype';
66
import { CONTINUE, SKIP, visit } from 'unist-util-visit';
77
import { getIcon } from './file-tree-icons';

src/content/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type CollectionEntry, defineCollection, z } from 'astro:content';
1+
import { defineCollection, z, type CollectionEntry } from 'astro:content';
22

33
export const baseSchema = z
44
.object({

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"~/*": ["src/*"]
99
},
1010
"jsx": "react-jsx",
11-
"jsxImportSource": "preact",
11+
"jsxImportSource": "preact"
1212
}
1313
}

0 commit comments

Comments
 (0)