style: prettier format
All checks were successful
container-scan / Container Scan (pull_request) Successful in 3m56s
docker-build / docker (pull_request) Successful in 4m33s

This commit is contained in:
Dominik 2025-04-18 14:27:00 +02:00
parent bf4fb036c0
commit 47210601f4
Signed by: dominik
GPG key ID: 06A4003FC5049644
6 changed files with 13 additions and 14 deletions

View file

@ -5,7 +5,7 @@ on:
branches:
- main
tags:
- "v*"
- 'v*'
pull_request:
jobs:

View file

@ -1,2 +1 @@
# MeetUp

View file

@ -4,4 +4,4 @@ services:
context: .
dockerfile: Dockerfile
ports:
- "3000:3000"
- '3000:3000'

View file

@ -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;

View file

@ -1,7 +1,7 @@
import type { NextConfig } from "next";
import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
output: "standalone",
output: 'standalone',
};
export default nextConfig;

View file

@ -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 (
<html lang="en">
<html lang='en'>
<body>{children}</body>
</html>
);