Skip to content

Commit 408f7e3

Browse files
committed
fix linting command
1 parent daa40c3 commit 408f7e3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/nextjs-integration/eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import hooksPlugin from 'eslint-plugin-react-hooks';
1212
export default [
1313
{
1414
name: 'post/global/ignores',
15-
ignores: ['dist/*'],
15+
ignores: ['dist/*', '.next/*'],
1616
},
1717
{
1818
name: 'post/defaults',

packages/nextjs-integration/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"build": "pnpm run typecheck && pnpm clean && next build",
1919
"build:serve": "pnpm build && next start",
2020
"clean": "rimraf .next",
21-
"lint": "next lint",
22-
"lint:fix": "next lint --fix",
21+
"lint": "eslint",
22+
"lint:fix": "eslint --fix",
2323
"e2e": "pnpm exec playwright test",
2424
"e2e:watch": "pnpm exec playwright test --ui",
2525
"typecheck": "tsc --noEmit"

0 commit comments

Comments
 (0)