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.
npx @next/codemod@15.5.6 next-lint-to-eslint-cli
1 parent 66a82e2 commit 38571ccCopy full SHA for 38571cc
eslint.config.mjs
@@ -12,6 +12,15 @@ const compat = new FlatCompat({
12
});
13
14
export default [
15
+ {
16
+ ignores: [
17
+ "node_modules/**",
18
+ ".next/**",
19
+ "out/**",
20
+ "build/**",
21
+ "next-env.d.ts",
22
+ ],
23
+ },
24
...compat.extends(
25
"prettier",
26
"eslint:recommended",
package.json
@@ -6,7 +6,7 @@
6
"dev": "next dev",
7
"build": "next build",
8
"start": "next start",
9
- "lint": "next lint"
+ "lint": "eslint ."
10
},
11
"dependencies": {
"@mantine/charts": "^8.3.6",
0 commit comments