Skip to content

Commit 13da8a0

Browse files
committed
chore: Run npx @next/codemod@15.5.6 next-lint-to-eslint-cli
And `npx prettier . --write` after.
1 parent 66a82e2 commit 13da8a0

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

eslint.config.mjs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,15 @@ const compat = new FlatCompat({
1212
});
1313

1414
export default [
15+
{
16+
ignores: [
17+
"node_modules/**",
18+
".next/**",
19+
"out/**",
20+
"build/**",
21+
"next-env.d.ts",
22+
],
23+
},
1524
...compat.extends(
1625
"prettier",
1726
"eslint:recommended",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"dev": "next dev",
77
"build": "next build",
88
"start": "next start",
9-
"lint": "next lint"
9+
"lint": "eslint ."
1010
},
1111
"dependencies": {
1212
"@mantine/charts": "^8.3.6",

0 commit comments

Comments
 (0)