putout 36.1.2 → 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.
Files changed (3) hide show
  1. package/ChangeLog +13 -0
  2. package/package.json +3 -2
  3. package/putout.json +2 -0
package/ChangeLog CHANGED
@@ -1,3 +1,16 @@
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
+
1
14
  2024.08.24, v36.1.2
2
15
 
3
16
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "36.1.2",
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",
@@ -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": "^22.0.0",
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",