@wildpastry/eslint-config 1.3.0 → 1.4.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 +4 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,21 +2,20 @@
|
|
|
2
2
|
Shareable ESLint configuration settings. No errors, only warnings.
|
|
3
3
|
|
|
4
4
|
## Prerequisites
|
|
5
|
-
- Install the official ESLint extension in your IDE
|
|
6
5
|
- Navigate to the root directory of your project
|
|
7
6
|
|
|
8
7
|
## Installation and usage
|
|
9
8
|
|
|
10
9
|
### Install eslint and plugins
|
|
11
10
|
```
|
|
12
|
-
npm
|
|
13
|
-
npm
|
|
14
|
-
npm
|
|
11
|
+
npm i eslint@latest
|
|
12
|
+
npm i @typescript-eslint/eslint-plugin
|
|
13
|
+
npm i eslint-plugin-react
|
|
15
14
|
```
|
|
16
15
|
|
|
17
16
|
### Install eslint config
|
|
18
17
|
```
|
|
19
|
-
npm
|
|
18
|
+
npm i @wildpastry/eslint-config@latest
|
|
20
19
|
```
|
|
21
20
|
|
|
22
21
|
### Create .eslintrc
|