@wildpastry/eslint-config 1.8.0 → 1.8.1
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
|
@@ -16,19 +16,19 @@ No errors, only warnings.
|
|
|
16
16
|
### 1. Install ESLint and Prettier core packages
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
npm i eslint prettier
|
|
19
|
+
npm i eslint prettier -D
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
### 2. Install ESLint plugins
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
-
npm i @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-plugin-react eslint-plugin-prettier
|
|
25
|
+
npm i @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-plugin-react eslint-plugin-prettier -D
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
### 3. Install @wildpastry custom ESLint config
|
|
29
29
|
|
|
30
30
|
```bash
|
|
31
|
-
npm i @wildpastry/eslint-config
|
|
31
|
+
npm i @wildpastry/eslint-config -D
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
### 4. Create .prettierrc file
|