@putout/plugin-putout 20.3.0 → 20.5.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 CHANGED
@@ -57,6 +57,7 @@ npm i @putout/plugin-putout -D
57
57
  - ✅ [declare](#declare);
58
58
  - ✅ [includer](#includer);
59
59
  - ✅ [move-require-on-top-level](#move-require-on-top-level);
60
+ - ✅ [remove-empty-array-from-process](#remove-empty-array-from-process);
60
61
  - ✅ [remove-unused-get-properties-argument](#remove-unused-get-properties-argument);
61
62
  - ✅ [rename-operate-to-operator](#rename-operate-to-operator);
62
63
  - ✅ [replace-operate-with-operator](#replace-operate-with-operator);
@@ -115,6 +116,7 @@ npm i @putout/plugin-putout -D
115
116
  "putout/move-require-on-top-level": "on",
116
117
  "putout/replace-test-message": "on",
117
118
  "putout/remove-unused-get-properties-argument": "on",
119
+ "putout/remove-empty-array-from-process": "on",
118
120
  "putout/simplify-replace-template": "on"
119
121
  }
120
122
  }
@@ -1209,6 +1211,22 @@ test('plugin-putout: rename-operate-to-operator: no report: operator exist', (t)
1209
1211
  });
1210
1212
  ```
1211
1213
 
1214
+ ## remove-empty-array-from-process
1215
+
1216
+ Check it out in 🐊[**Putout Editor**](https://putout.cloudcmd.io/#/gist/fc32ff87e91fd28f26a03f55eba0663e/3423926ba0a80d30beafe2ac66c70c517df173e1).
1217
+
1218
+ ### ❌ Example of incorrect code
1219
+
1220
+ ```js
1221
+ await process('input', []);
1222
+ ```
1223
+
1224
+ ### ✅ Example of correct code
1225
+
1226
+ ```js
1227
+ await process('input');
1228
+ ```
1229
+
1212
1230
  ## remove-unused-get-properties-argument
1213
1231
 
1214
1232
  Check it out in 🐊[**Putout Editor**](https://putout.cloudcmd.io/#/gist/fc32ff87e91fd28f26a03f55eba0663e/3423926ba0a80d30beafe2ac66c70c517df173e1).
@@ -16,6 +16,7 @@ module.exports = {
16
16
  rename: 'const {rename} = operator',
17
17
  renameProperty: 'const {renameProperty} = operator',
18
18
  extract: 'const {extract} = operator',
19
+ getLiteralRaw: 'const {getLiteralRaw} = operator',
19
20
  getPathAfterImports: 'const {getPathAfterImports} = operator',
20
21
  getPathAfterRequires: 'const {getPathAfterRequires} = operator',
21
22
  getBinding: 'const {getBinding} = operator',
package/lib/index.js CHANGED
@@ -50,6 +50,7 @@ const addAwaitToProgress = require('./add-await-to-progress');
50
50
  const applyForOfToTrackFile = require('./apply-for-of-to-track-file');
51
51
  const removeUnusedGetPropertiesArgument = require('./remove-unused-get-properties-argument');
52
52
  const simplifyReplaceTemplate = require('./simplify-replace-template');
53
+ const removeEmptyArrayFromProcess = require('./remove-empty-array-from-process');
53
54
 
54
55
  module.exports.rules = {
55
56
  'apply-processors-destructuring': applyProcessorsDestructuring,
@@ -102,4 +103,5 @@ module.exports.rules = {
102
103
  'apply-for-of-to-track-file': applyForOfToTrackFile,
103
104
  'remove-unused-get-properties-argument': removeUnusedGetPropertiesArgument,
104
105
  'simplify-replace-template': simplifyReplaceTemplate,
106
+ 'remove-empty-array-from-process': removeEmptyArrayFromProcess,
105
107
  };
@@ -0,0 +1,7 @@
1
+ 'use strict';
2
+
3
+ module.exports.report = () => `Avoid empty array used as 'process()' argument`;
4
+
5
+ module.exports.replace = () => ({
6
+ 'await process(__a, [])': 'await process(__a)',
7
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@putout/plugin-putout",
3
- "version": "20.3.0",
3
+ "version": "20.5.0",
4
4
  "type": "commonjs",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "🐊Putout plugin helps with plugins development",
@@ -38,7 +38,7 @@
38
38
  ],
39
39
  "devDependencies": {
40
40
  "@putout/plugin-tape": "*",
41
- "@putout/test": "^9.0.0",
41
+ "@putout/test": "^10.0.0",
42
42
  "c8": "^9.0.0",
43
43
  "eslint": "^9.0.0",
44
44
  "eslint-plugin-n": "^17.0.0",