We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 664525f commit bf5c337Copy full SHA for bf5c337
eslint.config.mjs
@@ -1,16 +1,19 @@
1
// eslint-disable-next-line import-x/extensions,import-x/no-unresolved
2
-import { defineConfig } from 'eslint/config';
+import { defineConfig, globalIgnores } from 'eslint/config';
3
import satya164 from 'eslint-config-satya164';
4
5
export default defineConfig([
6
- ...satya164,
7
- {
8
- ignores: [
9
- 'node_modules/',
10
- '**/coverage/',
11
- '**/lib/',
12
- '**/templates/',
13
- '**/__fixtures__/',
14
- ],
15
- },
+ satya164,
+
+ globalIgnores([
+ '**/.next/',
+ '**/.expo/',
+ '**/.yarn/',
+ '**/.vscode/',
+ '**/node_modules/',
+ '**/coverage/',
+ '**/lib/',
16
+ '**/templates/',
17
+ '**/__fixtures__/',
18
+ ]),
19
]);
0 commit comments