Skip to content

Commit faca03b

Browse files
committed
add ignores to eslint config
1 parent 92ced41 commit faca03b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

eslint.config.mjs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,15 @@ const eslintConfig = ts.config(
2121
...compat.extends(
2222
'next/core-web-vitals' /*, 'next/typescript'*/ /*added by ts below*/,
2323
),
24+
{
25+
ignores: [
26+
'node_modules/**',
27+
'.next/**',
28+
'out/**',
29+
'build/**',
30+
'next-env.d.ts',
31+
],
32+
},
2433
...ts.configs.strictTypeChecked,
2534
...ts.configs.stylisticTypeChecked,
2635
eslintConfigPrettier,

0 commit comments

Comments
 (0)