eslint-config-conventions 21.2.0 → 21.2.2

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/.oxlintrc.json CHANGED
@@ -1,10 +1,19 @@
1
1
  {
2
2
  "$schema": "./node_modules/oxlint/configuration_schema.json",
3
- "plugins": ["typescript", "unicorn", "react", "oxc", "import", "promise"],
3
+ "plugins": [
4
+ "eslint",
5
+ "typescript",
6
+ "unicorn",
7
+ "react",
8
+ "oxc",
9
+ "import",
10
+ "promise"
11
+ ],
4
12
  "categories": {
5
13
  "correctness": "error",
6
- "perf": "error",
7
- "suspicious": "error"
14
+ "suspicious": "error",
15
+ "pedantic": "error",
16
+ "perf": "error"
8
17
  },
9
18
  "env": {
10
19
  "builtin": true,
@@ -14,59 +23,20 @@
14
23
  },
15
24
  "rules": {
16
25
  "no-await-in-loop": "off",
17
- "constructor-super": "error",
18
- "for-direction": "error",
19
- "no-async-promise-executor": "error",
20
- "no-class-assign": "error",
21
- "no-compare-neg-zero": "error",
22
- "no-cond-assign": "error",
23
- "no-const-assign": "error",
24
- "no-constant-binary-expression": "error",
25
- "no-constant-condition": "error",
26
- "no-constructor-return": "error",
27
- "no-control-regex": "error",
28
- "no-debugger": "error",
29
- "no-dupe-class-members": "error",
30
- "no-dupe-else-if": "error",
31
- "no-dupe-keys": "error",
32
- "no-duplicate-case": "error",
33
- "no-duplicate-imports": "error",
34
- "no-empty-character-class": "error",
35
- "no-empty-pattern": "error",
36
- "no-ex-assign": "error",
37
- "no-fallthrough": "error",
38
- "no-func-assign": "error",
39
- "no-import-assign": "error",
40
- "no-invalid-regexp": "error",
41
- "no-irregular-whitespace": "error",
42
- "no-loss-of-precision": "error",
43
- "no-new-native-nonconstructor": "error",
44
- "no-obj-calls": "error",
45
- "no-promise-executor-return": "error",
46
- "no-prototype-builtins": "error",
47
- "no-self-assign": "error",
48
- "no-self-compare": "error",
49
- "no-setter-return": "error",
50
- "no-sparse-arrays": "error",
51
- "no-this-before-super": "error",
52
- "no-unexpected-multiline": "error",
53
- "no-unsafe-finally": "error",
54
- "no-unsafe-negation": "error",
55
- "no-unsafe-optional-chaining": "error",
56
- "no-unused-private-class-members": "error",
57
- "no-unused-vars": [
58
- "error",
59
- {
60
- "args": "all",
61
- "argsIgnorePattern": "^_",
62
- "caughtErrors": "all",
63
- "caughtErrorsIgnorePattern": "^_",
64
- "destructuredArrayIgnorePattern": "^_",
65
- "varsIgnorePattern": "^_",
66
- "ignoreRestSiblings": true
67
- }
68
- ],
69
- "no-useless-backreference": "error",
26
+ "no-loop-func": "off",
27
+ "no-negated-condition": "off",
28
+ "no-inline-comments": "off",
29
+ "max-lines": "off",
30
+ "max-depth": "off",
31
+ "max-classes-per-file": "off",
32
+ "max-lines-per-function": "off",
33
+ "require-await": "off",
34
+ "no-lonely-if": "off",
35
+ "array-callback-return": "off",
36
+
37
+ "getter-return": "error",
38
+ "no-undef": "error",
39
+ "no-unreachable": "error",
70
40
  "use-isnan": [
71
41
  "error",
72
42
  {
@@ -98,9 +68,6 @@
98
68
  "properties": true
99
69
  }
100
70
  ],
101
- "no-array-constructor": "error",
102
- "no-caller": "error",
103
- "no-delete-var": "error",
104
71
  "no-implicit-coercion": "error",
105
72
  "no-extra-boolean-cast": [
106
73
  "error",
@@ -114,37 +81,13 @@
114
81
  "allowEmptyCatch": true
115
82
  }
116
83
  ],
117
- "no-empty-static-block": "error",
118
- "no-eval": "error",
119
- "no-global-assign": "error",
120
84
  "no-multi-str": "error",
121
85
  "no-new-func": "error",
122
- "no-object-constructor": "error",
123
86
  "no-proto": "error",
124
- "no-redeclare": [
125
- "error",
126
- {
127
- "builtinGlobals": false
128
- }
129
- ],
130
87
  "no-regex-spaces": "error",
131
- "no-shadow-restricted-names": "error",
88
+ "no-shadow": "off",
132
89
  "no-throw-literal": "off",
133
- "no-unused-expressions": [
134
- "error",
135
- {
136
- "allowShortCircuit": true,
137
- "allowTernary": true,
138
- "allowTaggedTemplates": true
139
- }
140
- ],
141
- "no-useless-call": "error",
142
- "no-useless-concat": "error",
143
90
  "no-useless-computed-key": "error",
144
- "no-useless-constructor": "error",
145
- "no-useless-escape": "error",
146
- "no-useless-rename": "error",
147
- "no-useless-return": "error",
148
91
  "no-else-return": [
149
92
  "error",
150
93
  {
@@ -158,249 +101,181 @@
158
101
  "allowAsStatement": true
159
102
  }
160
103
  ],
161
- "no-with": "error",
104
+ "prefer-const": [
105
+ "error",
106
+ {
107
+ "destructuring": "all"
108
+ }
109
+ ],
162
110
  "prefer-object-has-own": "error",
163
- "prefer-promise-reject-errors": "error",
164
- "radix": "error",
165
- "yoda": ["error", "never"],
166
- "curly": ["error", "all"],
167
- "func-style": ["error", "expression"],
111
+ "yoda": "error",
112
+ "curly": "error",
113
+ "func-style": "error",
168
114
  "arrow-body-style": ["error", "always"],
115
+
169
116
  "promise/param-names": "error",
170
- "promise/no-new-statics": "error",
171
- "promise/no-multiple-resolved": "error",
172
117
  "promise/no-nesting": "error",
118
+
173
119
  "unicorn/catch-error-name": "error",
174
120
  "unicorn/consistent-date-clone": "error",
175
121
  "unicorn/error-message": "error",
176
- "unicorn/escape-case": "error",
177
- "unicorn/explicit-length-check": "error",
178
- "unicorn/new-for-builtins": "error",
179
- "unicorn/no-array-callback-reference": "error",
180
122
  "unicorn/no-array-for-each": "error",
181
123
  "unicorn/no-array-method-this-argument": "error",
182
124
  "unicorn/no-document-cookie": "error",
183
- "unicorn/no-empty-file": "error",
184
- "unicorn/no-hex-escape": "error",
185
- "unicorn/no-instanceof-builtins": "error",
186
- "unicorn/no-new-array": "error",
187
- "unicorn/no-new-buffer": "error",
188
- "unicorn/no-this-assignment": "error",
189
125
  "unicorn/no-zero-fractions": "error",
190
126
  "unicorn/number-literal-case": "error",
191
127
  "unicorn/prefer-node-protocol": "error",
192
128
  "unicorn/throw-new-error": "error",
193
- "unicorn/no-typeof-undefined": "error",
194
129
  "unicorn/require-array-join-separator": "error",
195
130
  "unicorn/prefer-number-properties": "error",
196
131
  "unicorn/prefer-modern-math-apis": "error",
197
132
  "unicorn/prefer-structured-clone": "error",
198
133
  "unicorn/consistent-existence-index-check": "error",
199
- "unicorn/no-unnecessary-array-flat-depth": "error",
200
- "unicorn/consistent-assert": "error",
201
- "unicorn/no-accessor-recursion": "error",
202
134
  "unicorn/no-array-reverse": "off",
203
135
  "unicorn/no-array-sort": "off",
136
+ "unicorn/no-lonely-if": "off",
137
+ "unicorn/prefer-string-replace-all": "off",
138
+ "unicorn/prefer-at": "off",
139
+ "unicorn/prefer-query-selector": "off",
140
+ "unicorn/prefer-top-level-await": "off",
141
+ "unicorn/prefer-string-slice": "off",
142
+ "unicorn/no-immediate-mutation": "off",
143
+ "unicorn/no-useless-undefined": "off",
144
+ "unicorn/no-object-as-default-parameter": "off",
145
+
204
146
  "react/no-array-index-key": "off",
205
- "react-hooks/rules-of-hooks": "error",
206
- "react-hooks/exhaustive-deps": "error",
207
- "react/jsx-key": "error",
208
- "react/jsx-no-comment-textnodes": "error",
209
- "react/jsx-no-duplicate-props": "error",
210
- "react/jsx-no-target-blank": "off",
211
- "react/jsx-no-undef": "error",
212
- "react/no-children-prop": "error",
213
- "react/no-danger-with-children": "error",
214
- "react/no-direct-mutation-state": "error",
215
- "react/no-find-dom-node": "error",
216
- "react/no-is-mounted": "error",
217
- "react/no-render-return-value": "error",
218
- "react/no-string-refs": "error",
219
- "react/no-unescaped-entities": "error",
220
147
  "react/no-unknown-property": "off",
221
148
  "react/react-in-jsx-scope": "off",
222
149
  "react/iframe-missing-sandbox": "off",
223
- "react/self-closing-comp": [
150
+ "react/self-closing-comp": "error",
151
+ "react/jsx-boolean-value": "error",
152
+ "react/jsx-no-target-blank": "off",
153
+ "react/jsx-no-useless-fragment": "off",
154
+
155
+ "import/no-webpack-loader-syntax": "error",
156
+ "import/export": "error",
157
+ "import/no-duplicates": "error",
158
+ "import/no-named-default": "error",
159
+ "import/no-anonymous-default-export": "error",
160
+ "import/consistent-type-specifier-style": "error",
161
+ "import/no-unassigned-import": "off",
162
+ "import/no-named-as-default-member": "off",
163
+ "import/max-dependencies": "off",
164
+
165
+ "@typescript-eslint/ban-types": "off",
166
+ "@typescript-eslint/no-unnecessary-type-arguments": "off",
167
+ "@typescript-eslint/no-unsafe-type-assertion": "off",
168
+ "@typescript-eslint/no-unsafe-member-access": "off",
169
+ "@typescript-eslint/no-confusing-void-expression": "off",
170
+ "@typescript-eslint/no-unsafe-assignment": "off",
171
+ "@typescript-eslint/no-misused-promises": "off",
172
+ "@typescript-eslint/return-await": ["error", "always"],
173
+ "@typescript-eslint/require-await": "off",
174
+ "@typescript-eslint/switch-exhaustiveness-check": "off",
175
+ "@typescript-eslint/ban-ts-comment": "off",
176
+ "no-unused-vars": [
224
177
  "error",
225
178
  {
226
- "component": true,
227
- "html": true
179
+ "args": "all",
180
+ "argsIgnorePattern": "^_",
181
+ "caughtErrors": "all",
182
+ "caughtErrorsIgnorePattern": "^_",
183
+ "destructuredArrayIgnorePattern": "^_",
184
+ "varsIgnorePattern": "^_",
185
+ "ignoreRestSiblings": true
228
186
  }
229
187
  ],
230
- "react/void-dom-elements-no-children": "error",
231
- "react/jsx-boolean-value": "error",
232
- "@next/next/google-font-display": "error",
233
- "@next/next/google-font-preconnect": "error",
234
- "@next/next/next-script-for-ga": "error",
235
- "@next/next/no-async-client-component": "error",
236
- "@next/next/no-before-interactive-script-outside-document": "error",
237
- "@next/next/no-css-tags": "error",
238
- "@next/next/no-head-element": "error",
239
- "@next/next/no-html-link-for-pages": "off",
240
- "@next/next/no-img-element": "off",
241
- "@next/next/no-page-custom-font": "error",
242
- "@next/next/no-styled-jsx-in-document": "error",
243
- "@next/next/no-sync-scripts": "error",
244
- "@next/next/no-title-in-document-head": "error",
245
- "@next/next/no-typos": "error",
246
- "@next/next/no-unwanted-polyfillio": "error",
247
- "@next/next/inline-script-id": "error",
248
- "@next/next/no-assign-module-variable": "error",
249
- "@next/next/no-document-import-in-page": "error",
250
- "@next/next/no-duplicate-head": "error",
251
- "@next/next/no-head-import-in-document": "error",
252
- "@next/next/no-script-component-in-head": "error",
253
- "import-x/no-absolute-path": "error",
254
- "import-x/no-webpack-loader-syntax": "error",
255
- "import-x/no-self-import": "error",
256
- "import-x/no-duplicates": "error",
257
- "import-x/no-named-default": "error",
258
- "import-x/no-empty-named-blocks": "error",
259
- "import-x/no-anonymous-default-export": "error",
260
- "import-x/consistent-type-specifier-style": ["error", "prefer-top-level"],
261
- "import-x/no-unassigned-import": "off",
262
- "import-x/no-named-as-default-member": "off"
263
- },
264
- "overrides": [
265
- {
266
- "files": ["**/*.ts", "**/*.tsx"],
267
- "rules": {
268
- "@typescript-eslint/no-unnecessary-type-arguments": "off",
269
- "@typescript-eslint/no-unsafe-type-assertion": "off",
270
- "no-unused-vars": [
271
- "error",
272
- {
273
- "args": "all",
274
- "argsIgnorePattern": "^_",
275
- "caughtErrors": "all",
276
- "caughtErrorsIgnorePattern": "^_",
277
- "destructuredArrayIgnorePattern": "^_",
278
- "varsIgnorePattern": "^_",
279
- "ignoreRestSiblings": true
280
- }
281
- ],
282
- "@typescript-eslint/no-implied-eval": "error",
283
- "no-redeclare": [
284
- "error",
285
- {
286
- "builtinGlobals": false
287
- }
288
- ],
289
- "@typescript-eslint/only-throw-error": "off",
290
- "no-unused-expressions": [
291
- "error",
292
- {
293
- "allowShortCircuit": true,
294
- "allowTernary": true,
295
- "allowTaggedTemplates": true
296
- }
297
- ],
298
- "@typescript-eslint/no-unnecessary-template-expression": "error",
299
- "@typescript-eslint/adjacent-overload-signatures": "error",
300
- "@typescript-eslint/no-unsafe-function-type": "error",
301
- "@typescript-eslint/no-wrapper-object-types": "error",
302
- "@typescript-eslint/consistent-type-definitions": [
303
- "error",
304
- "interface"
305
- ],
306
- "no-duplicate-imports": "off",
307
- "@typescript-eslint/consistent-type-imports": "error",
308
- "@typescript-eslint/explicit-function-return-type": [
309
- "error",
310
- {
311
- "allowExpressions": true,
312
- "allowHigherOrderFunctions": true,
313
- "allowTypedFunctionExpressions": true,
314
- "allowDirectConstAssertionInArrowFunctions": true
315
- }
316
- ],
317
- "@typescript-eslint/no-base-to-string": "error",
318
- "@typescript-eslint/no-dynamic-delete": "off",
319
- "@typescript-eslint/no-deprecated": "off",
320
- "@typescript-eslint/no-extra-non-null-assertion": "error",
321
- "@typescript-eslint/no-redundant-type-constituents": "error",
322
- "@typescript-eslint/no-extraneous-class": [
323
- "error",
324
- {
325
- "allowWithDecorator": true
326
- }
327
- ],
328
- "@typescript-eslint/no-floating-promises": [
329
- "error",
330
- {
331
- "allowForKnownSafeCalls": [
332
- {
333
- "from": "package",
334
- "name": ["test", "it", "suite", "describe"],
335
- "package": "node:test"
336
- }
337
- ]
338
- }
339
- ],
340
- "@typescript-eslint/no-for-in-array": "error",
341
- "@typescript-eslint/no-misused-new": "error",
342
- "@typescript-eslint/no-non-null-asserted-optional-chain": "error",
343
- "@typescript-eslint/no-non-null-assertion": "error",
344
- "@typescript-eslint/no-this-alias": [
345
- "error",
346
- {
347
- "allowDestructuring": true
348
- }
349
- ],
350
- "@typescript-eslint/no-unnecessary-boolean-literal-compare": "error",
351
- "@typescript-eslint/no-unnecessary-type-assertion": "error",
352
- "@typescript-eslint/no-require-imports": "error",
353
- "@typescript-eslint/no-unsafe-unary-minus": "error",
354
- "@typescript-eslint/no-unsafe-declaration-merging": "error",
355
- "@typescript-eslint/no-array-delete": "error",
356
- "@typescript-eslint/prefer-as-const": "error",
357
- "@typescript-eslint/prefer-function-type": "error",
358
- "@typescript-eslint/prefer-includes": "error",
359
- "@typescript-eslint/prefer-nullish-coalescing": [
360
- "error",
361
- {
362
- "ignoreTernaryTests": true,
363
- "ignoreConditionalTests": false,
364
- "ignoreMixedLogicalExpressions": false
365
- }
366
- ],
367
- "@typescript-eslint/prefer-reduce-type-parameter": "error",
368
- "@typescript-eslint/prefer-return-this-type": "error",
369
- "@typescript-eslint/promise-function-async": "error",
370
- "prefer-promise-reject-errors": "off",
371
- "@typescript-eslint/prefer-promise-reject-errors": "error",
372
- "@typescript-eslint/require-array-sort-compare": [
373
- "error",
374
- {
375
- "ignoreStringArrays": true
376
- }
377
- ],
378
- "@typescript-eslint/restrict-plus-operands": [
379
- "error",
380
- {
381
- "skipCompoundAssignments": true
382
- }
383
- ],
384
- "@typescript-eslint/restrict-template-expressions": [
385
- "error",
386
- {
387
- "allowNumber": true
388
- }
389
- ],
390
- "@typescript-eslint/strict-boolean-expressions": [
391
- "error",
188
+ "no-use-before-define": [
189
+ "error",
190
+ {
191
+ "functions": false,
192
+ "classes": false,
193
+ "enums": false,
194
+ "variables": false,
195
+ "typedefs": false
196
+ }
197
+ ],
198
+ "no-redeclare": [
199
+ "error",
200
+ {
201
+ "builtinGlobals": false
202
+ }
203
+ ],
204
+ "@typescript-eslint/only-throw-error": "off",
205
+ "no-unused-expressions": [
206
+ "error",
207
+ {
208
+ "allowShortCircuit": true,
209
+ "allowTernary": true,
210
+ "allowTaggedTemplates": true
211
+ }
212
+ ],
213
+ "@typescript-eslint/adjacent-overload-signatures": "error",
214
+ "@typescript-eslint/consistent-type-definitions": "error",
215
+ "@typescript-eslint/consistent-type-imports": "error",
216
+ "@typescript-eslint/explicit-function-return-type": [
217
+ "error",
218
+ {
219
+ "allowExpressions": true,
220
+ "allowHigherOrderFunctions": true,
221
+ "allowTypedFunctionExpressions": true,
222
+ "allowDirectConstAssertionInArrowFunctions": true
223
+ }
224
+ ],
225
+ "@typescript-eslint/no-extraneous-class": [
226
+ "error",
227
+ {
228
+ "allowWithDecorator": true
229
+ }
230
+ ],
231
+ "@typescript-eslint/no-floating-promises": [
232
+ "error",
233
+ {
234
+ "allowForKnownSafeCalls": [
392
235
  {
393
- "allowString": false,
394
- "allowNumber": false,
395
- "allowNullableObject": false,
396
- "allowNullableBoolean": false,
397
- "allowNullableString": false,
398
- "allowNullableNumber": false,
399
- "allowAny": false
236
+ "from": "package",
237
+ "name": ["test", "it", "suite", "describe"],
238
+ "package": "node:test"
400
239
  }
401
240
  ]
402
- },
403
- "plugins": ["typescript"]
404
- }
405
- ]
241
+ }
242
+ ],
243
+ "@typescript-eslint/no-non-null-assertion": "error",
244
+ "@typescript-eslint/no-this-alias": "error",
245
+ "@typescript-eslint/no-require-imports": "error",
246
+ "@typescript-eslint/prefer-function-type": "error",
247
+ "@typescript-eslint/prefer-find": "error",
248
+ "@typescript-eslint/prefer-nullish-coalescing": [
249
+ "error",
250
+ {
251
+ "ignoreTernaryTests": true,
252
+ "ignoreConditionalTests": false,
253
+ "ignoreMixedLogicalExpressions": false
254
+ }
255
+ ],
256
+ "@typescript-eslint/prefer-readonly": "error",
257
+ "@typescript-eslint/prefer-reduce-type-parameter": "error",
258
+ "@typescript-eslint/prefer-return-this-type": "error",
259
+ "@typescript-eslint/promise-function-async": "error",
260
+ "@typescript-eslint/require-array-sort-compare": "error",
261
+ "@typescript-eslint/restrict-plus-operands": [
262
+ "error",
263
+ {
264
+ "skipCompoundAssignments": true
265
+ }
266
+ ],
267
+ "@typescript-eslint/restrict-template-expressions": "error",
268
+ "@typescript-eslint/strict-boolean-expressions": [
269
+ "error",
270
+ {
271
+ "allowString": false,
272
+ "allowNumber": false,
273
+ "allowNullableObject": false,
274
+ "allowNullableBoolean": false,
275
+ "allowNullableString": false,
276
+ "allowNullableNumber": false,
277
+ "allowAny": false
278
+ }
279
+ ]
280
+ }
406
281
  }
package/README.md CHANGED
@@ -37,7 +37,7 @@ More information about **formatting rules** vs **code-quality rules** can be fou
37
37
  npm install --save-dev \
38
38
  eslint@^9.22.0 \
39
39
  eslint-plugin-promise@^7.2.1 \
40
- eslint-plugin-unicorn@^62.0.0 \
40
+ eslint-plugin-unicorn@^63.0.0 \
41
41
  eslint-plugin-import-x@^4.6.1 \
42
42
  globals@^17.0.0 \
43
43
  typescript@^5.9.3 \
package/eslint.config.js CHANGED
@@ -409,7 +409,6 @@ export default defineConfig(
409
409
  ],
410
410
 
411
411
  "@typescript-eslint/no-for-in-array": "error",
412
- "@typescript-eslint/no-invalid-void-type": "error",
413
412
  "@typescript-eslint/no-misused-new": "error",
414
413
  "@typescript-eslint/no-non-null-asserted-optional-chain": "error",
415
414
  "@typescript-eslint/no-non-null-assertion": "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-conventions",
3
- "version": "21.2.0",
3
+ "version": "21.2.2",
4
4
  "public": true,
5
5
  "description": "ESLint shareable config to enforce strict conventions and good code quality.",
6
6
  "author": "Théo LUDWIG <contact@theoludwig.fr>",
@@ -41,7 +41,7 @@
41
41
  "lint:editorconfig": "editorconfig-checker",
42
42
  "lint:eslint": "eslint . --max-warnings 0 --config eslint.config.mjs",
43
43
  "lint:prettier": "prettier . --check",
44
- "oxlint:migrate": "npx @oxlint/migrate@latest eslint.config.js --type-aware",
44
+ "oxlint:migrate": "npx @oxlint/migrate@latest eslint.config.js --type-aware --details --with-nursery",
45
45
  "inspect": "eslint --inspect-config",
46
46
  "test": "node --test",
47
47
  "release": "semantic-release"
@@ -49,7 +49,7 @@
49
49
  "peerDependencies": {
50
50
  "eslint": "^9.22.0",
51
51
  "eslint-plugin-promise": "^7.2.1",
52
- "eslint-plugin-unicorn": "^61.0.0 || ^62.0.0",
52
+ "eslint-plugin-unicorn": "^61.0.0 || ^62.0.0 || ^63.0.0",
53
53
  "eslint-plugin-import-x": "^4.6.1",
54
54
  "globals": "^16.0.0 || ^17.0.0",
55
55
  "typescript-eslint": "^8.32.0"
@@ -75,18 +75,18 @@
75
75
  }
76
76
  },
77
77
  "devDependencies": {
78
- "@types/node": "25.0.8",
79
- "globals": "17.0.0",
78
+ "@types/node": "25.3.0",
79
+ "globals": "17.3.0",
80
80
  "editorconfig-checker": "6.1.1",
81
- "oxlint": "1.39.0",
82
- "@oxlint/migrate": "1.39.0",
81
+ "oxlint": "1.49.0",
82
+ "@oxlint/migrate": "1.49.0",
83
83
  "eslint": "9.39.2",
84
84
  "eslint-plugin-promise": "7.2.1",
85
- "eslint-plugin-unicorn": "62.0.0",
85
+ "eslint-plugin-unicorn": "63.0.0",
86
86
  "eslint-plugin-import-x": "4.16.1",
87
- "typescript-eslint": "8.53.0",
88
- "prettier": "3.7.4",
89
- "semantic-release": "25.0.2",
87
+ "typescript-eslint": "8.56.0",
88
+ "prettier": "3.8.1",
89
+ "semantic-release": "25.0.3",
90
90
  "typescript": "5.9.3"
91
91
  }
92
92
  }