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

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
.github
12
*.md
23
*.mdx

index.css

+2-2
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

+1-1
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

+3-3
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

+6-6
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

+1-1
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export default {
22
client: 'Client',
33
server: 'Server',
4-
}
4+
};
+2-2
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

+1-1
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

+1-1
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+
};

pages/radio/_meta.js

+1-1
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+
};

pages/scoreboard/_meta.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ export default {
33
config: 'Configuration',
44
guides: 'Guides',
55
issues: 'Common issues',
6-
}
6+
};

pages/scoreboard/guides/_meta.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export default {
22
'status-indicators': 'Status indicators',
33
'ace-sections': 'ACE permissions',
4-
}
4+
};

postcss.config.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ export default {
22
plugins: {
33
'@tailwindcss/postcss': {},
44
},
5-
};
5+
};

theme.config.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const config: DocsThemeConfig = {
1414
<link rel="shortcut icon" href="/logo.svg" type="image/x-icon" />
1515
<script defer src="https://analytics.dejv.it/script.js" data-website-id="388963db-aa71-419c-866d-71c6c5fa6d97"></script>
1616
</>
17-
)
17+
);
1818
},
1919

2020
logo: (

0 commit comments

Comments
 (0)