putout 36.1.1 → 36.2.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/ChangeLog +21 -0
- package/package.json +4 -3
- package/putout.json +2 -0
package/ChangeLog
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
2024.08.24, v36.2.0
|
|
2
|
+
|
|
3
|
+
fix:
|
|
4
|
+
- 9219b1d6b @putout/plugin-typescript: require
|
|
5
|
+
|
|
6
|
+
feature:
|
|
7
|
+
- 80542a57a @putout/plugin-remove-unused-labels: add
|
|
8
|
+
- 95c5f137b @putout/eslint-config: no-unused-labels -> remove-unused-labels
|
|
9
|
+
- 7f99993aa root: eslint-plugin-putout v23.0.0
|
|
10
|
+
- 046aa3ac7 eslint-plugin-putout: drop support of 🐊 < 36
|
|
11
|
+
- 36afe2d36 eslint-plugin-putout: no-extra-non-null-assertion -> typescript/remove-useless-non-null-expressions
|
|
12
|
+
- 627838038 @putout/plugin-typescript: remove-useless-non-null-expression: add support of OptionalMemberExpression
|
|
13
|
+
|
|
14
|
+
2024.08.24, v36.1.2
|
|
15
|
+
|
|
16
|
+
feature:
|
|
17
|
+
- 6df870c25 putout: @putout/plugin-typescript v8.0.0
|
|
18
|
+
- 5bd7600fb @putout/plugin-typescript: drop support of 🐊 < 36
|
|
19
|
+
- 4017b8f28 @putout/plugin-typescript: remove-useless-non-null-expression$: add
|
|
20
|
+
- d7b1a3965 @putout/plugin-eslint: remove-useless-properties: after remove-overrides-with-empty-rules
|
|
21
|
+
|
|
1
22
|
2024.08.24, v36.1.1
|
|
2
23
|
|
|
3
24
|
fix:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "36.
|
|
3
|
+
"version": "36.2.0",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
|
|
6
6
|
"description": "🐊 Pluggable and configurable code transformer with built-in ESLint, Babel and support of js, jsx, typescript, flow, markdown, yaml and json",
|
|
@@ -154,6 +154,7 @@
|
|
|
154
154
|
"@putout/plugin-remove-unreferenced-variables": "^4.0.0",
|
|
155
155
|
"@putout/plugin-remove-unused-expressions": "^9.0.0",
|
|
156
156
|
"@putout/plugin-remove-unused-for-of-variables": "^3.0.0",
|
|
157
|
+
"@putout/plugin-remove-unused-labels": "^1.0.1",
|
|
157
158
|
"@putout/plugin-remove-unused-private-fields": "^2.0.0",
|
|
158
159
|
"@putout/plugin-remove-unused-variables": "^9.0.0",
|
|
159
160
|
"@putout/plugin-remove-useless-arguments": "^8.0.0",
|
|
@@ -184,7 +185,7 @@
|
|
|
184
185
|
"@putout/plugin-tape": "^15.0.0",
|
|
185
186
|
"@putout/plugin-try-catch": "^4.0.0",
|
|
186
187
|
"@putout/plugin-types": "^4.0.0",
|
|
187
|
-
"@putout/plugin-typescript": "^
|
|
188
|
+
"@putout/plugin-typescript": "^8.0.0",
|
|
188
189
|
"@putout/plugin-webpack": "^3.0.0",
|
|
189
190
|
"@putout/processor-css": "^9.0.0",
|
|
190
191
|
"@putout/processor-filesystem": "^4.0.0",
|
|
@@ -233,7 +234,7 @@
|
|
|
233
234
|
"currify": "^4.0.0",
|
|
234
235
|
"eslint": "^9.0.0",
|
|
235
236
|
"eslint-plugin-n": "^17.0.0",
|
|
236
|
-
"eslint-plugin-putout": "^
|
|
237
|
+
"eslint-plugin-putout": "^23.0.0",
|
|
237
238
|
"just-camel-case": "^6.2.0",
|
|
238
239
|
"lerna": "^6.0.1",
|
|
239
240
|
"madrun": "^10.0.0",
|
package/putout.json
CHANGED
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
"convert-quotes-to-backticks": "off",
|
|
54
54
|
"remove-unused-expressions": "off",
|
|
55
55
|
"remove-unused-variables": "off",
|
|
56
|
+
"remove-unused-labels": "off",
|
|
56
57
|
"remove-useless-escape": "off",
|
|
57
58
|
"remove-useless-variables": "off",
|
|
58
59
|
"remove-useless-return": "off",
|
|
@@ -207,6 +208,7 @@
|
|
|
207
208
|
"remove-empty",
|
|
208
209
|
"remove-unreferenced-variables",
|
|
209
210
|
"remove-unused-variables",
|
|
211
|
+
"remove-unused-labels",
|
|
210
212
|
"remove-unused-private-fields",
|
|
211
213
|
"remove-unused-expressions",
|
|
212
214
|
"remove-useless-assign",
|