Skip to content

Commit 364b60e

Browse files
committed
fix(getcloser): lint errors
1 parent ede1ebd commit 364b60e

2 files changed

Lines changed: 11 additions & 8 deletions

File tree

getcloser/frontend/eslint.config.mjs

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,15 @@ const compat = new FlatCompat({
1010
});
1111

1212
const eslintConfig = [
13+
{
14+
ignores: [
15+
'node_modules/**',
16+
'.next/**',
17+
'out/**',
18+
'build/**',
19+
'next-env.d.ts',
20+
],
21+
},
1322
...compat.extends('next/core-web-vitals', 'next/typescript'),
1423
{
1524
rules: {
@@ -20,13 +29,6 @@ const eslintConfig = [
2029
'object-curly-spacing': ['error', 'always'],
2130
'key-spacing': ['error', { beforeColon: false, afterColon: true }],
2231
},
23-
ignores: [
24-
'node_modules/**',
25-
'.next/**',
26-
'out/**',
27-
'build/**',
28-
'next-env.d.ts',
29-
],
3032
},
3133
];
3234

getcloser/frontend/src/app/layout.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ export default function RootLayout({
4040
return (
4141
<html lang="en" style={{ background: 'linear-gradient(to bottom, hsl(160 40% 10%) 0%, hsl(160 40% 15%) 40%, hsl(160 40% 20%) 100%)' }} className="min-h-screen">
4242
<head>
43-
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" rel="stylesheet" />
43+
{/* eslint-disable-next-line @next/next/no-page-custom-font */}
44+
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&display=optional" rel="stylesheet" />
4445
</head>
4546
<body
4647
className={`${geistSans.variable} ${geistMono.variable} ${dongle.variable} antialiased`}

0 commit comments

Comments
 (0)