@putout/plugin-putout-config 11.6.0 → 11.7.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 -2
- package/lib/apply-destructuring/index.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -191,7 +191,8 @@ Apply [`destructuring`](https://github.com/coderaiser/putout/tree/master/package
|
|
|
191
191
|
- "split-call-with-destructuring": "off",
|
|
192
192
|
- "merge-destructuring-properties": "off",
|
|
193
193
|
- "split-nested-destructuring": "off",
|
|
194
|
-
- "remove-useless-arguments/destructuring": "off"
|
|
194
|
+
- "remove-useless-arguments/destructuring": "off",
|
|
195
|
+
- "remove-useless-variables/destruct": "off"
|
|
195
196
|
+ "destructuring": "off",
|
|
196
197
|
+ "destructuring/remove-useless-object": "off",
|
|
197
198
|
+ "destructuring/apply-array": "off",
|
|
@@ -199,7 +200,8 @@ Apply [`destructuring`](https://github.com/coderaiser/putout/tree/master/package
|
|
|
199
200
|
+ "destructuring/split-call": "off",
|
|
200
201
|
+ "destructuring/merge-properties": "off",
|
|
201
202
|
+ "destructuring/split-nested": "off",
|
|
202
|
-
+ "destructuring/remove-useless-arguments": "off"
|
|
203
|
+
+ "destructuring/remove-useless-arguments": "off",
|
|
204
|
+
+ "destructuring/remove-useless-variables": "off"
|
|
203
205
|
}
|
|
204
206
|
}
|
|
205
207
|
```
|
|
@@ -9,6 +9,7 @@ const v41 = [
|
|
|
9
9
|
['split-call-with-destructuring', 'destructuring/split-call'],
|
|
10
10
|
['split-nested-destructuring', 'destructuring/split-nested'],
|
|
11
11
|
['remove-useless-arguments/destructuring', 'destructuring/remove-useless-arguments'],
|
|
12
|
+
['remove-useless-variables/destruct', 'destructuring/remove-useless-variables'],
|
|
12
13
|
];
|
|
13
14
|
|
|
14
15
|
const versions = [...v41];
|
package/package.json
CHANGED