Skip to content

Commit 373c535

Browse files
committed
style: switch biome to as-needed semicolons
1 parent a14f276 commit 373c535

63 files changed

Lines changed: 2330 additions & 2339 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

biome.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
},
2020
"javascript": {
2121
"formatter": {
22-
"quoteStyle": "single"
22+
"quoteStyle": "single",
23+
"semicolons": "asNeeded"
2324
}
2425
},
2526
"overrides": [

example/app/WeddingUploadsApp.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
'use client';
1+
'use client'
22

3-
import dynamic from 'next/dynamic';
3+
import dynamic from 'next/dynamic'
44

55
const WeddingUploadsClient = dynamic(() => import('./WeddingUploadsClient'), {
66
ssr: false,
7-
});
7+
})
88

99
export default function WeddingUploadsApp({ convexUrl }: { convexUrl?: string | null }) {
10-
return <WeddingUploadsClient convexUrl={convexUrl} />;
10+
return <WeddingUploadsClient convexUrl={convexUrl} />
1111
}

0 commit comments

Comments
 (0)