From 47210601f4144c27b832370c7089ecef3a504ced Mon Sep 17 00:00:00 2001 From: Dominik Stahl Date: Fri, 18 Apr 2025 14:27:00 +0200 Subject: [PATCH] style: prettier format --- .github/workflows/docker-build.yml | 2 +- README.md | 1 - docker-compose.yml | 2 +- eslint.config.mjs | 8 ++++---- next.config.ts | 4 ++-- src/app/layout.tsx | 10 +++++----- 6 files changed, 13 insertions(+), 14 deletions(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 2972540..2c1ca3b 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -5,7 +5,7 @@ on: branches: - main tags: - - "v*" + - 'v*' pull_request: jobs: diff --git a/README.md b/README.md index 3ce6877..a225c9e 100644 --- a/README.md +++ b/README.md @@ -1,2 +1 @@ # MeetUp - diff --git a/docker-compose.yml b/docker-compose.yml index 79a41b4..9cff22a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,4 +4,4 @@ services: context: . dockerfile: Dockerfile ports: - - "3000:3000" + - '3000:3000' diff --git a/eslint.config.mjs b/eslint.config.mjs index c85fb67..1ed31e4 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -1,6 +1,6 @@ -import { dirname } from "path"; -import { fileURLToPath } from "url"; -import { FlatCompat } from "@eslint/eslintrc"; +import { dirname } from 'path'; +import { fileURLToPath } from 'url'; +import { FlatCompat } from '@eslint/eslintrc'; const __filename = fileURLToPath(import.meta.url); const __dirname = dirname(__filename); @@ -10,7 +10,7 @@ const compat = new FlatCompat({ }); const eslintConfig = [ - ...compat.extends("next/core-web-vitals", "next/typescript"), + ...compat.extends('next/core-web-vitals', 'next/typescript', 'prettier'), ]; export default eslintConfig; diff --git a/next.config.ts b/next.config.ts index 68a6c64..94647ad 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,7 @@ -import type { NextConfig } from "next"; +import type { NextConfig } from 'next'; const nextConfig: NextConfig = { - output: "standalone", + output: 'standalone', }; export default nextConfig; diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 68f637f..085d6cb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,9 +1,9 @@ -import type { Metadata } from "next"; -import "./globals.css"; +import type { Metadata } from 'next'; +import './globals.css'; export const metadata: Metadata = { - title: "MeetUp", - description: "", + title: 'MeetUp', + description: '', }; export default function RootLayout({ @@ -12,7 +12,7 @@ export default function RootLayout({ children: React.ReactNode; }>) { return ( - + {children} );