You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/api-reference/cli.md
+11-1
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ Usage
21
21
$ next <command>
22
22
23
23
Available commands
24
-
build, start, export, dev, telemetry
24
+
build, start, export, dev, lint, telemetry
25
25
26
26
Options
27
27
--version, -v Version number
@@ -84,6 +84,16 @@ The application will start at `http://localhost:3000` by default. The default po
84
84
npx next start -p 4000
85
85
```
86
86
87
+
## Lint
88
+
89
+
`next lint` runs ESLint for all files in the `pages` directory and provides a guided setup to install any required dependencies if ESLint is not already configured in your application.
90
+
91
+
You can also run ESLint on other directories with the `--dir` flag:
92
+
93
+
```bash
94
+
next lint --dir components
95
+
```
96
+
87
97
## Telemetry
88
98
89
99
Next.js collects **completely anonymous** telemetry data about general usage.
description: Next.js supports ESLint by default. You can get started with ESLint in Next.js here.
3
+
---
4
+
5
+
# ESLint
6
+
7
+
Since version **11.0.0**, Next.js provides an integrated [ESLint](https://eslint.org/) experience out of the box. To get started, run `next lint`:
8
+
9
+
```bash
10
+
next lint
11
+
```
12
+
13
+
If you don't already have ESLint configured in your application, you will be guided through the installation of any required packages.
14
+
15
+
```bash
16
+
next lint
17
+
18
+
# You'll see instructions like these:
19
+
#
20
+
# Please install eslint and eslint-config-next by running:
21
+
#
22
+
# yarn add --dev eslint eslint-config-next
23
+
#
24
+
# ...
25
+
```
26
+
27
+
If no ESLint configuration is present, Next.js will create an `.eslintrc` file in the root of your project and automatically configure it with the base configuration:
28
+
29
+
```
30
+
{
31
+
"extends": "next"
32
+
}
33
+
```
34
+
35
+
Now you can run `next lint` every time you want to run ESLint to catch errors
36
+
37
+
> The default base configuration (`"extends": "next"`) can be updated at any time and will only be included if no ESLint configuration is present.
38
+
39
+
We recommend using an appropriate [integration](https://eslint.org/docs/user-guide/integrations#editors) to view warnings and errors directly in your code editor during development.
40
+
41
+
## Linting During Builds
42
+
43
+
Once ESLint has been set up, it will automatically run during every build (`next build`). Errors will fail the build while warnings will not.
44
+
45
+
If you do not want ESLint to run as a build step, it can be disabled using the `--no-lint` flag:
46
+
47
+
```bash
48
+
next build --no-lint
49
+
```
50
+
51
+
This is not recommended unless you have configured ESLint to run in a separate part of your workflow (for example, in CI or a pre-commit hook).
52
+
53
+
## Linting Custom Directories
54
+
55
+
By default, Next.js will only run ESLint for all files in the `pages/` directory. However, you can specify other custom directories to run by using the `--dir` flag in `next lint`:
56
+
57
+
```bash
58
+
next lint --dir components --dir lib
59
+
```
60
+
61
+
## ESLint Plugin
62
+
63
+
Next.js provides an ESLint plugin, [`eslint-plugin-next`](https://www.npmjs.com/package/@next/eslint-plugin-next), that makes it easier to catch common issues and problems in a Next.js application. The full set of rules can be found in the [package repository](https://github.com/vercel/next.js/tree/master/packages/eslint-plugin-next/lib/rules).
64
+
65
+
## Base Configuration
66
+
67
+
The Next.js base ESLint configuration is automatically generated when `next lint` is run for the first time:
68
+
69
+
```
70
+
{
71
+
"extends": "next"
72
+
}
73
+
```
74
+
75
+
This configuration extends recommended rule sets from various Eslint plugins:
You can see the full details of the shareable configuration in the [`eslint-config-next`](https://www.npmjs.com/package/eslint-config-next) package.
82
+
83
+
If you would like to modify any rules provided by the supported plugins (`react`, `react-hooks`, `next`), you can directly modify them using the `rules` property:
84
+
85
+
```
86
+
{
87
+
"extends": "next",
88
+
"rules": {
89
+
"react/no-unescaped-entities": "off",
90
+
"@next/next/no-page-custom-font": "error",
91
+
}
92
+
}
93
+
```
94
+
95
+
> **Note**: If you need to also include a separate, custom ESLint configuration, it is highly recommended that `eslint-config-next` is extended last after other configurations. For example:
96
+
>
97
+
> ```
98
+
> {
99
+
> "extends": ["eslint:recommended", "next"]
100
+
> }
101
+
> ```
102
+
>
103
+
> The `next` configuration already handles setting default values for the `parser`, `plugins` and `settings` properties.
104
+
> There is no need to manually re-declare any of these properties unless you need a different configuration for your use case.
105
+
> If you include any other shareable configurations, you will need to make sure that these properties are not overwritten or modified.
106
+
107
+
### Core Web Vitals
108
+
109
+
A stricter `next/core-web-vitals` entrypoint can also be specified in `.eslintrc`:
110
+
111
+
```
112
+
{
113
+
"extends": ["next", "next/core-web-vitals"]
114
+
}
115
+
```
116
+
117
+
`next/core-web-vitals` updates `eslint-plugin-next` to error on a number of rules that are warnings by default if they affect [Core Web Vitals](https://web.dev/vitals/).
118
+
119
+
> Both `next` and `next/core-web-vitals` entry points are automatically included for new applications built with [Create Next App](/docs/api-reference/create-next-app.md).
Copy file name to clipboardexpand all lines: docs/getting-started.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,8 @@ Open `package.json` and add the following `scripts`:
55
55
"scripts": {
56
56
"dev": "next dev",
57
57
"build": "next build",
58
-
"start": "next start"
58
+
"start": "next start",
59
+
"lint": "next lint"
59
60
}
60
61
```
61
62
@@ -64,6 +65,7 @@ These scripts refer to the different stages of developing an application:
64
65
-`dev` - Runs [`next dev`](/docs/api-reference/cli.md#development) which starts Next.js in development mode
65
66
-`build` - Runs [`next build`](/docs/api-reference/cli.md#build) which builds the application for production usage
66
67
-`start` - Runs [`next start`](/docs/api-reference/cli.md#production) which starts a Next.js production server
68
+
-`lint` - Runs [`next lint`](/docs/api-reference/cli.md#lint) which sets up Next.js' built-in ESLint configuration
67
69
68
70
Next.js is built around the concept of [pages](/docs/basic-features/pages.md). A page is a [React Component](https://reactjs.org/docs/components-and-props.html) exported from a `.js`, `.jsx`, `.ts`, or `.tsx` file in the `pages` directory.
0 commit comments