@putout/plugin-putout-config 11.0.0 → 11.1.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 +3 -1
- package/lib/apply-destructuring/index.js +2 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -162,13 +162,15 @@ Apply [`destructuring`](https://github.com/coderaiser/putout/tree/master/package
|
|
|
162
162
|
- "split-call-with-destructuring": "off",
|
|
163
163
|
- "merge-destructuring-properties": "off",
|
|
164
164
|
- "split-nested-destructuring": "off"
|
|
165
|
+
- "remove-useless-arguments/destructuring": "off"
|
|
165
166
|
+ "destructuring": "off",
|
|
166
167
|
+ "destructuring/remove-useless-object": "off",
|
|
167
168
|
+ "destructuring/apply-array": "off",
|
|
168
169
|
+ "destructuring/apply-object": "off",
|
|
169
170
|
+ "destructuring/split-call": "off",
|
|
170
171
|
+ "destructuring/merge-properties": "off",
|
|
171
|
-
+ "destructuring/split-nested": "off"
|
|
172
|
+
+ "destructuring/split-nested": "off",
|
|
173
|
+
+ "destructuring/remove-useless-arguments": "off"
|
|
172
174
|
}
|
|
173
175
|
}
|
|
174
176
|
```
|
|
@@ -8,11 +8,10 @@ const v41 = [
|
|
|
8
8
|
['merge-destructuring-properties', 'destructuring/merge-properties'],
|
|
9
9
|
['split-call-with-destructuring', 'destructuring/split-call'],
|
|
10
10
|
['split-nested-destructuring', 'destructuring/split-nested'],
|
|
11
|
+
['remove-useless-arguments/destructuring', 'destructuring/remove-useless-arguments'],
|
|
11
12
|
];
|
|
12
13
|
|
|
13
|
-
const versions = [
|
|
14
|
-
...v41,
|
|
15
|
-
];
|
|
14
|
+
const versions = [...v41];
|
|
16
15
|
|
|
17
16
|
export const {
|
|
18
17
|
report,
|
package/package.json
CHANGED