Skip to content

Commit 93c78a5

Browse files
authored
docs: Add instructions for pnpm compat (#19422)
fixes #19421
1 parent b476a93 commit 93c78a5

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,17 @@ After that, you can run ESLint on any file or directory like this:
5656
npx eslint yourfile.js
5757
```
5858

59+
### pnpm Installation
60+
61+
To use ESLint with pnpm, we recommend setting up a `.npmrc` file with at least the following settings:
62+
63+
```text
64+
auto-install-peers=true
65+
node-linker=hoisted
66+
```
67+
68+
This ensures that pnpm installs dependencies in a way that is more compatible with npm and is less likely to produce errors.
69+
5970
## Configuration
6071

6172
You can configure rules in your `eslint.config.js` files as in this example:

docs/src/use/getting-started.md

+11
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,17 @@ It is also possible to install ESLint globally, rather than locally, using `npm
102102

103103
You can also manually set up ESLint in your project.
104104

105+
::: important
106+
If you are using [pnpm](https://pnpm.io), be sure to create a `.npmrc` file with at least the following settings:
107+
108+
```text
109+
auto-install-peers=true
110+
node-linker=hoisted
111+
```
112+
113+
This ensures that pnpm installs dependencies in a way that is more compatible with npm and is less likely to produce errors.
114+
:::
115+
105116
Before you begin, you must already have a `package.json` file. If you don't, make sure to run `npm init` or `yarn init` to create the file beforehand.
106117

107118
1. Install the ESLint packages in your project:

0 commit comments

Comments
 (0)