@@ -13,6 +13,7 @@ npm i @putout/plugin-putout-config -D
13
13
14
14
## Rules
15
15
16
+ - ✅ [ apply-assignment] ( #apply-assignment ) ;
16
17
- ✅ [ apply-conditions] ( #apply-conditions ) ;
17
18
- ✅ [ apply-esm] ( #apply-esm ) ;
18
19
- ✅ [ apply-return] ( #apply-return ) ;
@@ -37,6 +38,7 @@ npm i @putout/plugin-putout-config -D
37
38
``` json
38
39
{
39
40
"rules" : {
41
+ "putout-config/apply-assignment" : " on" ,
40
42
"putout-config/apply-conditions" : " on" ,
41
43
"putout-config/apply-esm" : " on" ,
42
44
"putout-config/apply-for-of" : " on" ,
@@ -58,6 +60,29 @@ npm i @putout/plugin-putout-config -D
58
60
}
59
61
```
60
62
63
+ ## apply-assignment
64
+
65
+ Apply [ ` assignment ` ] ( https://github.com/coderaiser/putout/tree/master/packages/plugin-assignment#readme ) according to:
66
+
67
+ - 🐊[ ** Putout v39** ] ( https://github.com/coderaiser/putout/releases/tag/v39.0.0 ) :
68
+
69
+ ``` diff
70
+ {
71
+ "rules": {
72
+ - "split-assignment-expressions": "off",
73
+ - "simplify-assignments": "off",
74
+ - "convert-assignment-to-arrow-function": "off",
75
+ - "convert-assignment-to-comparisson": "off",
76
+ - "convert-assignment-to-declaration": "off"
77
+ + "assignment/split": "off",
78
+ + "assignment/simplify": "off",
79
+ + "assignment/convert-to-arrow-function": "off"
80
+ + "assignment/convert-to-comparisson": "off",
81
+ + "assignment/convert-to-declaration": "off"
82
+ }
83
+ }
84
+ ```
85
+
61
86
## apply-return
62
87
63
88
Apply [ ` return ` ] ( https://github.com/coderaiser/putout/tree/master/packages/plugin-return#readme ) according to:
0 commit comments