We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent daa40c3 commit 408f7e3Copy full SHA for 408f7e3
packages/nextjs-integration/eslint.config.mjs
@@ -12,7 +12,7 @@ import hooksPlugin from 'eslint-plugin-react-hooks';
12
export default [
13
{
14
name: 'post/global/ignores',
15
- ignores: ['dist/*'],
+ ignores: ['dist/*', '.next/*'],
16
},
17
18
name: 'post/defaults',
packages/nextjs-integration/package.json
@@ -18,8 +18,8 @@
"build": "pnpm run typecheck && pnpm clean && next build",
19
"build:serve": "pnpm build && next start",
20
"clean": "rimraf .next",
21
- "lint": "next lint",
22
- "lint:fix": "next lint --fix",
+ "lint": "eslint",
+ "lint:fix": "eslint --fix",
23
"e2e": "pnpm exec playwright test",
24
"e2e:watch": "pnpm exec playwright test --ui",
25
"typecheck": "tsc --noEmit"
0 commit comments