eslint-plugin-effector 0.7.5 → 0.7.6
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 +16 -5
- package/package.json +1 -1
- package/rules/keep-options-order/config.js +1 -1
package/README.md
CHANGED
|
@@ -6,16 +6,27 @@ Enforcing best practices for [Effector](http://effector.dev/)
|
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Install [ESLint](http://eslint.org) and `eslint-plugin-effector`:
|
|
10
|
+
|
|
11
|
+
### pnpm
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
$ pnpm install --dev eslint
|
|
15
|
+
$ pnpm install --dev eslint-plugin-effector
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
### yarn
|
|
10
19
|
|
|
11
20
|
```
|
|
12
|
-
$ yarn add
|
|
21
|
+
$ yarn add --dev eslint
|
|
22
|
+
$ yarn add --dev eslint-plugin-effector
|
|
13
23
|
```
|
|
14
24
|
|
|
15
|
-
|
|
25
|
+
### npm
|
|
16
26
|
|
|
17
27
|
```
|
|
18
|
-
$
|
|
28
|
+
$ npm install --dev eslint
|
|
29
|
+
$ npm install --dev eslint-plugin-effector
|
|
19
30
|
```
|
|
20
31
|
|
|
21
32
|
## Usage
|
|
@@ -86,5 +97,5 @@ This preset contains rules, which enforce _future-effector_ code-style.
|
|
|
86
97
|
3. Commit changes by `git commit -m "Release X.X.X"`
|
|
87
98
|
4. Create git tag for release by `git tag -a vX.X.X -m "vX.X.X"`
|
|
88
99
|
5. Push changes to remote by `git push --follow-tags`
|
|
89
|
-
6. Release package to registry by `
|
|
100
|
+
6. Release package to registry by `pnpm clean-publish`
|
|
90
101
|
7. Fill release page with changelog on GitHub
|
package/package.json
CHANGED