Skip to content

Commit 35a84f2

Browse files
committed
chore: format using prettier
1 parent a68c22c commit 35a84f2

File tree

15 files changed

+24
-23
lines changed

15 files changed

+24
-23
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
.github
12
*.md
23
*.mdx

index.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
@import "tailwindcss";
1+
@import 'tailwindcss';
22

33
.ac-splitter {
44
margin-top: 2rem;
55
margin-bottom: 2rem;
66
border-top-width: 2px;
7-
}
7+
}

next.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import nextra from 'nextra'
1+
import nextra from 'nextra';
22

33
const withNextra = nextra({
44
theme: 'nextra-theme-docs',

pages/_app.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import type { AppProps } from 'next/app'
1+
import type { AppProps } from 'next/app';
22
import '../index.css';
33

44
export default function MyApp({ Component, pageProps }: AppProps) {
5-
return <Component {...pageProps} />
6-
}
5+
return <Component {...pageProps} />;
6+
}

pages/_meta.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ export default {
33
radio: 'AC Radio',
44
scoreboard: {
55
title: (
6-
<div className="flex justify-between w-full gap-2">
6+
<div className="flex w-full justify-between gap-2">
77
<span>AC Scoreboard</span>
8-
<span className="bg-green-600 text-white px-1 py-0.5 rounded font-semibold text-xs self-center">NEW</span>
8+
<span className="self-center rounded bg-green-600 px-1 py-0.5 text-xs font-semibold text-white">NEW</span>
99
</div>
1010
),
1111
},
@@ -15,12 +15,12 @@ export default {
1515
title: 'Tebex',
1616
href: 'https://store.acscripts.dev/',
1717
type: 'page',
18-
newWindow: true
18+
newWindow: true,
1919
},
2020
link_kofi: {
2121
title: 'Support us',
2222
href: 'https://ko-fi.com/antond',
2323
type: 'page',
24-
newWindow: true
25-
}
26-
}
24+
newWindow: true,
25+
},
26+
};

pages/documents/_meta.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ export default {
55
'exports-and-events': 'Exports and events',
66
config: 'Configuration',
77
issues: 'Common issues',
8-
}
8+
};

pages/documents/bridge/_meta.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export default {
22
client: 'Client',
33
server: 'Server',
4-
}
4+
};
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export default {
2-
'ox_inventory': 'ox_inventory',
2+
ox_inventory: 'ox_inventory',
33
'qb-inventory': 'qb-inventory',
4-
}
4+
};

pages/documents/presets/_meta.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export default {
22
fields: 'Available fields',
33
structure: 'Example structure',
4-
}
4+
};

pages/gifts/_meta.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ export default {
33
install: 'Installation',
44
config: 'Configuration',
55
issues: 'Common issues',
6-
}
6+
};

0 commit comments

Comments
 (0)