Skip to content

Commit ed99e17

Browse files
ci: apply automated fixes
1 parent 35d4ec3 commit ed99e17

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

examples/solid/start-clerk-basic/src/routes/__root.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ function RootDocument({ children }: { children: JSXElement }) {
102102
<body>
103103
<HeadContent />
104104

105-
106105
<div class="p-2 flex gap-2 text-lg">
107106
<Link
108107
to="/"
@@ -135,6 +134,6 @@ function RootDocument({ children }: { children: JSXElement }) {
135134
<TanStackRouterDevtools position="bottom-right" />
136135
<Scripts />
137136
</body>
138-
</html >
137+
</html>
139138
)
140139
}

examples/solid/start-clerk-basic/src/routes/_authed/posts.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,12 @@ function PostsComponent() {
1313
return (
1414
<div class="p-2 flex gap-2">
1515
<ul class="list-disc pl-4">
16-
<For each={[...posts(), { id: 'i-do-not-exist', title: 'Non-existent Post' }]}>
16+
<For
17+
each={[
18+
...posts(),
19+
{ id: 'i-do-not-exist', title: 'Non-existent Post' },
20+
]}
21+
>
1722
{(post) => (
1823
<li class="whitespace-nowrap">
1924
<Link

examples/solid/start-clerk-basic/src/routes/_authed/profile.$.tsx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,12 @@ function PostsComponent() {
1313
return (
1414
<div class="p-2 flex gap-2">
1515
<ul class="list-disc pl-4">
16-
<For each={[...posts(), { id: 'i-do-not-exist', title: 'Non-existent Post' }]}>
16+
<For
17+
each={[
18+
...posts(),
19+
{ id: 'i-do-not-exist', title: 'Non-existent Post' },
20+
]}
21+
>
1722
{(post) => (
1823
<li class="whitespace-nowrap">
1924
<Link
@@ -32,6 +37,6 @@ function PostsComponent() {
3237
</ul>
3338
<hr />
3439
<Outlet />
35-
</div >
40+
</div>
3641
)
3742
}
Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,13 @@
11
{
2-
"include": [
3-
"**/*.ts",
4-
"**/*.tsx"
5-
],
2+
"include": ["**/*.ts", "**/*.tsx"],
63
"compilerOptions": {
74
"strict": true,
85
"esModuleInterop": true,
96
"jsx": "preserve",
107
"jsxImportSource": "solid-js",
118
"module": "ESNext",
129
"moduleResolution": "Bundler",
13-
"lib": [
14-
"DOM",
15-
"DOM.Iterable",
16-
"ES2022"
17-
],
10+
"lib": ["DOM", "DOM.Iterable", "ES2022"],
1811
"isolatedModules": true,
1912
"resolveJsonModule": true,
2013
"skipLibCheck": true,
@@ -23,10 +16,8 @@
2316
"forceConsistentCasingInFileNames": true,
2417
"baseUrl": ".",
2518
"paths": {
26-
"~/*": [
27-
"./src/*"
28-
]
19+
"~/*": ["./src/*"]
2920
},
3021
"noEmit": true
3122
}
32-
}
23+
}

0 commit comments

Comments
 (0)