Skip to content

Commit 18194e2

Browse files
committed
chore: format code
1 parent 49f9d13 commit 18194e2

File tree

133 files changed

+593
-554
lines changed

Some content is hidden

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

133 files changed

+593
-554
lines changed

apps/astro-app/astro.config.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { defineConfig } from 'astro/config';
1+
import { defineConfig } from 'astro/config'
22

33
// https://astro.build/config
4-
export default defineConfig({});
4+
export default defineConfig({})

apps/astro-app/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"name": "astro-app",
3-
"private": true,
43
"version": "1.0.0",
4+
"private": true,
55
"description": "",
6+
"author": "",
7+
"license": "ISC",
8+
"keywords": [],
69
"main": "index.js",
710
"scripts": {
811
"dev": "astro dev",
912
"start": "astro dev",
1013
"build": "astro build",
1114
"preview": "astro preview"
1215
},
13-
"keywords": [],
14-
"author": "",
15-
"license": "ISC",
1616
"dependencies": {
1717
"astro": "^2.10.12"
1818
}
19-
}
19+
}

apps/astro-app/src/env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/// <reference types="astro/client" />
1+
/// <reference types="astro/client" />

apps/astro-app/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
22
"extends": "astro/tsconfigs/strictest"
3-
}
3+
}

apps/next-app-router/app/globals.css

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,7 @@
1818

1919
body {
2020
color: rgb(var(--foreground-rgb));
21-
background: linear-gradient(
22-
to bottom,
23-
transparent,
24-
rgb(var(--background-end-rgb))
25-
)
26-
rgb(var(--background-start-rgb));
21+
background: linear-gradient(to bottom, transparent, rgb(var(--background-end-rgb))) rgb(var(--background-start-rgb));
2722
}
2823

2924
@layer utilities {

apps/next-app/.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"root": true,
33
"extends": "next/core-web-vitals"
4-
}
4+
}

apps/next-app/.tw-patch/tw-class-list.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,4 @@
104104
"via-white",
105105
"w-full",
106106
"z-10"
107-
]
107+
]

apps/next-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424
"tailwindcss": "3.4.4",
2525
"typescript": "5.5.3"
2626
}
27-
}
27+
}

apps/next-app/pages/_app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import '@/styles/globals.css'
21
import type { AppProps } from 'next/app'
2+
import '@/styles/globals.css'
33

44
export default function App({ Component, pageProps }: AppProps) {
55
return <Component {...pageProps} />

apps/next-app/pages/_document.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Html, Head, Main, NextScript } from 'next/document'
1+
import { Head, Html, Main, NextScript } from 'next/document'
22

33
export default function Document() {
44
return (

0 commit comments

Comments
 (0)