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 CHANGED
@@ -6,16 +6,27 @@ Enforcing best practices for [Effector](http://effector.dev/)
6
6
 
7
7
  ## Installation
8
8
 
9
- First, install [ESLint](http://eslint.org):
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 -D eslint
21
+ $ yarn add --dev eslint
22
+ $ yarn add --dev eslint-plugin-effector
13
23
  ```
14
24
 
15
- Next, install `eslint-plugin-effector`:
25
+ ### npm
16
26
 
17
27
  ```
18
- $ yarn add -D eslint-plugin-effector
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 `yarn clean-publish`
100
+ 6. Release package to registry by `pnpm clean-publish`
90
101
  7. Fill release page with changelog on GitHub
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-effector",
3
- "version": "0.7.5",
3
+ "version": "0.7.6",
4
4
  "description": "Enforcing best practices for Effector",
5
5
  "keywords": [
6
6
  "eslint",
@@ -1,3 +1,3 @@
1
- const correctOrder = ["clock", "source", "filter", "fn", "target"];
1
+ const correctOrder = ["clock", "source", "filter", "fn", "target", "greedy"];
2
2
 
3
3
  module.exports = { correctOrder };