@putout/plugin-putout-config 11.0.0 → 11.1.1

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
@@ -161,14 +161,16 @@ Apply [`destructuring`](https://github.com/coderaiser/putout/tree/master/package
161
161
  - "apply-destructuring/object": "off",
162
162
  - "split-call-with-destructuring": "off",
163
163
  - "merge-destructuring-properties": "off",
164
- - "split-nested-destructuring": "off"
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@putout/plugin-putout-config",
3
- "version": "11.0.0",
3
+ "version": "11.1.1",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "🐊Putout plugin helps to maintain putout config",