Skip to content

Commit a14f276

Browse files
authored
Align Biome formatting style (#24)
* Align Biome formatting style * Format with single quotes
1 parent 4c232cf commit a14f276

Some content is hidden

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

64 files changed

+1704
-2086
lines changed

biome.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,14 @@
1313
"formatter": {
1414
"enabled": true,
1515
"indentStyle": "space",
16-
"indentWidth": 2
16+
"indentWidth": 2,
17+
"lineEnding": "lf",
18+
"lineWidth": 100
19+
},
20+
"javascript": {
21+
"formatter": {
22+
"quoteStyle": "single"
23+
}
1724
},
1825
"overrides": [
1926
{

example/app/WeddingUploadsApp.tsx

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

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

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

9-
export default function WeddingUploadsApp({
10-
convexUrl,
11-
}: {
12-
convexUrl?: string | null;
13-
}) {
9+
export default function WeddingUploadsApp({ convexUrl }: { convexUrl?: string | null }) {
1410
return <WeddingUploadsClient convexUrl={convexUrl} />;
1511
}

0 commit comments

Comments
 (0)