Skip to content

Commit 91da003

Browse files
authored
fix: remove a few old references to 'next lint' (#82800)
1 parent e3e2197 commit 91da003

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/01-app/01-getting-started/01-installation.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Then, add the following scripts to your `package.json` file:
6666
"dev": "next dev",
6767
"build": "next build",
6868
"start": "next start",
69-
"lint": "next lint"
69+
"lint": "eslint"
7070
}
7171
}
7272
```
@@ -76,7 +76,7 @@ These scripts refer to the different stages of developing an application:
7676
- `next dev`: Starts the development server.
7777
- `next build`: Builds the application for production.
7878
- `next start`: Starts the production server.
79-
- `next lint`: Runs ESLint.
79+
- `eslint`: Runs ESLint.
8080

8181
<AppOnly>
8282

docs/01-app/02-guides/testing/cypress.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Add the Cypress `open` command to the `package.json` scripts field:
4242
"dev": "next dev",
4343
"build": "next build",
4444
"start": "next start",
45-
"lint": "next lint",
45+
"lint": "eslint",
4646
"cypress:open": "cypress open"
4747
}
4848
}

0 commit comments

Comments
 (0)