-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.config.mjs
More file actions
65 lines (63 loc) · 2.85 KB
/
eslint.config.mjs
File metadata and controls
65 lines (63 loc) · 2.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import { defineConfig, globalIgnores } from "eslint/config";
import { FlatCompat } from "@eslint/eslintrc"
const compat = new FlatCompat({ baseDirectory: import.meta.url });
export default defineConfig([
...compat.extends('eslint-config-next'),
...compat.extends('next/core-web-vitals'),
globalIgnores([
'**/.*/**/*', // Default of ESLint legacy config
'**/node_modules',
'**/.next/**/*',
'**/_next/**/*',
'**/.vscode/**/*',
'**/dist/**/*',
'e2e-tests/**/*',
'examples/cms-sanity/sanity.types.ts',
'examples/with-eslint/**/*',
'examples/with-typescript-eslint-jest/**/*',
'examples/with-kea/**/*',
'examples/with-custom-babel-config/**/*',
'examples/with-flow/**/*',
'examples/with-jest/**/*',
'examples/with-mobx-state-tree/**/*',
'examples/with-mobx/**/*',
'examples/with-tigris/db/models/todoItems.ts',
'packages/next/src/bundles/webpack/packages/*.runtime.js',
'packages/next/src/bundles/webpack/packages/lazy-compilation-*.js',
'packages/next/src/compiled/**/*',
'packages/next/wasm/@next',
'packages/react-refresh-utils/**/*.js',
'packages/react-dev-overlay/lib/**/*',
'**/__tmp__/**/*',
'.github/actions/next-stats-action/.work',
'packages/next-codemod/transforms/__testfixtures__/**/*',
'packages/next-codemod/transforms/__tests__/**/*',
'packages/next-codemod/bin/__testfixtures__/**/*',
'packages/next-codemod/**/*.js',
'packages/next-codemod/**/*.d.ts',
'packages/next-env/**/*.d.ts',
'packages/create-next-app/templates/**/*',
'test/integration/eslint/**/*.js',
'test/integration/script-loader/**/*.js',
'test/development/basic/legacy-decorators/**/*.js',
'test/production/emit-decorator-metadata/**/*.js',
'!test/**/*.test.*',
'test/e2e/app-dir/rsc-errors/app/swc/use-client/page.js',
'**/test-timings.json',
'crates/**/*',
'bench/nested-deps/**/*',
'bench/nested-deps-app-router/**/*',
'bench/heavy-npm-deps/**/*',
'packages/next-bundle-analyzer/index.d.ts',
'examples/with-typescript-graphql/lib/gql/',
'test/development/basic/hmr/components/parse-error.js',
'test/development/mcp-server/fixtures/default-template/app/build-error/page.tsx',
'packages/next-swc/docs/assets/**/*',
'test/e2e/app-dir/server-source-maps/fixtures/default/internal-pkg/sourcemapped.js',
'test/e2e/app-dir/server-source-maps/fixtures/default/external-pkg/sourcemapped.js',
'test/development/next-lint-eslint-formatter-compact/**/*.js',
'test/e2e/app-dir/app-external/app/mixed/import/mixed-mod.mjs',
'turbopack/crates/*/tests/**/*',
'turbopack/crates/*/js/src/compiled',
])
]);