Apply consistent tab-based indentation across the frontend codebase

This commit is contained in:
2026-01-04 23:32:41 +01:00
parent 3259927fd1
commit 74be5e889a
8 changed files with 136 additions and 136 deletions

View File

@@ -1,5 +1,5 @@
{ {
"$schema": "https://biomejs.dev/schemas/2.2.0/schema.json", "$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
"vcs": { "vcs": {
"enabled": true, "enabled": true,
"clientKind": "git", "clientKind": "git",
@@ -12,7 +12,7 @@
"formatter": { "formatter": {
"enabled": true, "enabled": true,
"indentStyle": "tab", "indentStyle": "tab",
"indentWidth": 2 "indentWidth": 1
}, },
"linter": { "linter": {
"enabled": true, "enabled": true,

View File

@@ -1,5 +1,5 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import {Geist, Geist_Mono, Ubuntu_Mono, Ubuntu_Sans} from "next/font/google"; import { Geist, Geist_Mono, Ubuntu_Mono, Ubuntu_Sans } from "next/font/google";
import "./globals.css"; import "./globals.css";
const ubuntuSans = Ubuntu_Sans({ const ubuntuSans = Ubuntu_Sans({
@@ -9,13 +9,13 @@ const ubuntuSans = Ubuntu_Sans({
const ubuntuMono = Ubuntu_Mono({ const ubuntuMono = Ubuntu_Mono({
variable: "--font-geist-mono", variable: "--font-geist-mono",
weight: ['400', '700'], weight: ["400", "700"],
subsets: ["latin"], subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "MemeGoat", title: "MemeGoat",
icons: "/memegoat-color.svg" icons: "/memegoat-color.svg",
}; };
export default function RootLayout({ export default function RootLayout({