@book000/eslint-config 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,19 +7,19 @@ ESLint config for [Tomachi (book000)](https://github.com/book000)
|
|
|
7
7
|
If you are using npm:
|
|
8
8
|
|
|
9
9
|
```shell
|
|
10
|
-
npm install eslint eslint-config-standard @book000/eslint-config
|
|
10
|
+
npm install eslint eslint-config-standard eslint-plugin-import eslint-plugin-n eslint-plugin-promise @book000/eslint-config
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
or if you are using yarn:
|
|
14
14
|
|
|
15
15
|
```shell
|
|
16
|
-
yarn add eslint eslint-config-standard @book000/eslint-config
|
|
16
|
+
yarn add eslint eslint-config-standard eslint-plugin-import eslint-plugin-n eslint-plugin-promise @book000/eslint-config
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
or if you are using pnpm:
|
|
20
20
|
|
|
21
21
|
```shell
|
|
22
|
-
pnpm add eslint eslint-config-standard @book000/eslint-config
|
|
22
|
+
pnpm add eslint eslint-config-standard eslint-plugin-import eslint-plugin-n eslint-plugin-promise @book000/eslint-config
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
Then, create `eslint.config.mjs` file and write the following:
|