Skip to content

Commit 64b2938

Browse files
committed
update eslint config comments
1 parent 2c24164 commit 64b2938

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

eslint.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default [
3030
// Next.js configuration using FlatCompat
3131
...compat.extends('next/core-web-vitals'),
3232

33-
// --- Main Configuration for your files ---
33+
// --- Main Configuration ---
3434
{
3535
files: ['src/**/*.{js,jsx,ts,tsx}', 'tests/**/*.{js,jsx,ts,tsx}'],
3636
languageOptions: {
@@ -65,7 +65,7 @@ export default [
6565
prettier: prettierPlugin,
6666
},
6767
rules: {
68-
// Your custom rules
68+
// Ccustom rules
6969
complexity: ['warn', { max: 8 }],
7070
curly: ['error', 'all'],
7171
'no-unused-vars': 'off',
@@ -81,7 +81,7 @@ export default [
8181
],
8282
'@typescript-eslint/no-explicit-any': 'warn',
8383

84-
// Next.js overrides (these will override the ones from next/core-web-vitals)
84+
// Next.js overrides
8585
'@next/next/no-img-element': 'off', // Allow img tags if needed
8686
'@next/next/no-page-custom-font': 'warn',
8787

0 commit comments

Comments
 (0)