Skip to content

Commit 0b1af78

Browse files
chore: lint
1 parent 0f0f141 commit 0b1af78

File tree

161 files changed

+34956
-10899
lines changed

Some content is hidden

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

161 files changed

+34956
-10899
lines changed

Diff for: .gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,6 @@ yarn-error.log*
3636
# Misc
3737
.DS_Store
3838
*.pem
39+
40+
41+
apps/storybook/storybook-static/**

Diff for: .vscode/settings.json

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
2-
{
3-
"typescript.tsdk": "node_modules/typescript/lib",
4-
"typescript.enablePromptUseWorkspaceTsdk": true},
5-
"eslint.workingDirectories": [
6-
{
7-
"mode": "auto"
8-
}
9-
]
2+
"typescript.tsdk": "node_modules/typescript/lib",
3+
"typescript.enablePromptUseWorkspaceTsdk": true,
4+
"eslint.workingDirectories": [
5+
{
6+
"mode": "auto"
7+
}
8+
]
109
}

Diff for: apps/docs/app/globals.css

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
:root {
2-
--background: #ffffff;
3-
--foreground: #171717;
2+
--background: #ffffff;
3+
--foreground: #171717;
44
}
55

66
@media (prefers-color-scheme: dark) {
7-
:root {
8-
--background: #0a0a0a;
9-
--foreground: #ededed;
10-
}
7+
:root {
8+
--background: #0a0a0a;
9+
--foreground: #ededed;
10+
}
1111
}
1212

1313
html,
1414
body {
15-
max-width: 100vw;
16-
overflow-x: hidden;
15+
max-width: 100vw;
16+
overflow-x: hidden;
1717
}
1818

1919
body {
20-
color: var(--foreground);
21-
background: var(--background);
20+
color: var(--foreground);
21+
background: var(--background);
2222
}
2323

2424
* {
25-
box-sizing: border-box;
26-
padding: 0;
27-
margin: 0;
25+
box-sizing: border-box;
26+
padding: 0;
27+
margin: 0;
2828
}
2929

3030
a {
31-
color: inherit;
32-
text-decoration: none;
31+
color: inherit;
32+
text-decoration: none;
3333
}
3434

3535
@media (prefers-color-scheme: dark) {
36-
html {
37-
color-scheme: dark;
38-
}
36+
html {
37+
color-scheme: dark;
38+
}
3939
}

Diff for: apps/docs/app/layout.tsx

+15-15
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,29 @@ import localFont from "next/font/local";
33
import "./globals.css";
44

55
const geistSans = localFont({
6-
src: "./fonts/GeistVF.woff",
7-
variable: "--font-geist-sans",
6+
src: "./fonts/GeistVF.woff",
7+
variable: "--font-geist-sans",
88
});
99
const geistMono = localFont({
10-
src: "./fonts/GeistMonoVF.woff",
11-
variable: "--font-geist-mono",
10+
src: "./fonts/GeistMonoVF.woff",
11+
variable: "--font-geist-mono",
1212
});
1313

1414
export const metadata: Metadata = {
15-
title: "Create Next App",
16-
description: "Generated by create next app",
15+
title: "Create Next App",
16+
description: "Generated by create next app",
1717
};
1818

1919
export default function RootLayout({
20-
children,
20+
children,
2121
}: Readonly<{
22-
children: React.ReactNode;
22+
children: React.ReactNode;
2323
}>) {
24-
return (
25-
<html lang="en">
26-
<body className={`${geistSans.variable} ${geistMono.variable}`}>
27-
{children}
28-
</body>
29-
</html>
30-
);
24+
return (
25+
<html lang="en">
26+
<body className={`${geistSans.variable} ${geistMono.variable}`}>
27+
{children}
28+
</body>
29+
</html>
30+
);
3131
}

0 commit comments

Comments
 (0)