Skip to content

Commit bf5c337

Browse files
committedMar 29, 2025
chore: add .next to eslint ignore list
1 parent 664525f commit bf5c337

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed
 

‎eslint.config.mjs

+14-11
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
// eslint-disable-next-line import-x/extensions,import-x/no-unresolved
2-
import { defineConfig } from 'eslint/config';
2+
import { defineConfig, globalIgnores } from 'eslint/config';
33
import satya164 from 'eslint-config-satya164';
44

55
export default defineConfig([
6-
...satya164,
7-
{
8-
ignores: [
9-
'node_modules/',
10-
'**/coverage/',
11-
'**/lib/',
12-
'**/templates/',
13-
'**/__fixtures__/',
14-
],
15-
},
6+
satya164,
7+
8+
globalIgnores([
9+
'**/.next/',
10+
'**/.expo/',
11+
'**/.yarn/',
12+
'**/.vscode/',
13+
'**/node_modules/',
14+
'**/coverage/',
15+
'**/lib/',
16+
'**/templates/',
17+
'**/__fixtures__/',
18+
]),
1619
]);

0 commit comments

Comments
 (0)