feat: update eslint & prettier rules

This commit is contained in:
HYana
2025-04-30 17:36:46 +08:00
parent d4af2d4326
commit 460e065eed
53 changed files with 2241 additions and 2102 deletions
+5 -8
View File
@@ -1,10 +1,9 @@
import "./global.css"
import type { Metadata } from "next";
import './global.css';
import type { Metadata } from 'next';
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: 'Create Next App',
description: 'Generated by create next app',
};
export default function RootLayout({
@@ -14,9 +13,7 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body className={``}>
{children}
</body>
<body className={``}>{children}</body>
</html>
);
}