@putout/plugin-putout 29.2.0 β 29.2.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
|
@@ -2082,7 +2082,7 @@ const test = createTest(__dirname, {
|
|
|
2082
2082
|
|
|
2083
2083
|
## remove-useless-source-argument
|
|
2084
2084
|
|
|
2085
|
-
Check it out in π[**Putout Editor**](https://putout.cloudcmd.io/#/gist/9b5f94d6a60f3337f925fcc338370d83/
|
|
2085
|
+
Check it out in π[**Putout Editor**](https://putout.cloudcmd.io/#/gist/9b5f94d6a60f3337f925fcc338370d83/7e944de0dfdd64b3c74d490aae21b04015b8262f).
|
|
2086
2086
|
|
|
2087
2087
|
### β Example of incorrect code
|
|
2088
2088
|
|
|
@@ -9,6 +9,7 @@ export const filter = (path) => !isObjectProperty(path.parentPath);
|
|
|
9
9
|
export const replace = () => ({
|
|
10
10
|
'findPlaces(__a, __b, __c)': 'findPlaces(__a, __c)',
|
|
11
11
|
'transform(__a, __b, __c)': 'transform(__a, __c)',
|
|
12
|
+
'transformAsync(__a, __b, __c)': 'transformAsync(__a, __c)',
|
|
12
13
|
'tryCatch(transform, __a, __b, __c)': 'tryCatch(transform, __a, __c)',
|
|
13
14
|
'tryCatch(findPlaces, __a, __b, __c)': 'tryCatch(findPlaces, __a, __c)',
|
|
14
15
|
});
|
package/package.json
CHANGED