@@ -11,7 +11,11 @@ There is a config that enables the rules in this category: [`no-new-in-esnext`]
11
11
| Rule ID | Description | |
12
12
| :--------| :------------| :--:|
13
13
| [ es-x/no-array-fromasync] ( ./no-array-fromasync.md ) | disallow the ` Array.fromAsync ` method. | |
14
+ | [ es-x/no-asyncdisposablestack] ( ./no-asyncdisposablestack.md ) | disallow the ` AsyncDisposableStack ` class. | |
15
+ | [ es-x/no-disposablestack] ( ./no-disposablestack.md ) | disallow the ` DisposableStack ` class. | |
14
16
| [ es-x/no-error-iserror] ( ./no-error-iserror.md ) | disallow the ` Error.isError ` method. | |
17
+ | [ es-x/no-suppressederror] ( ./no-suppressederror.md ) | disallow the ` SuppressedError ` class. | |
18
+ | [ es-x/no-using-declarations] ( ./no-using-declarations.md ) | disallow ` using ` and ` await using ` declarations. | |
15
19
16
20
## ES2025
17
21
@@ -409,6 +413,8 @@ Rules in this category are not included in any preset.
409
413
| [ es-x/no-nonstandard-array-prototype-properties] ( ./no-nonstandard-array-prototype-properties.md ) | disallow non-standard properties on Array instance. | |
410
414
| [ es-x/no-nonstandard-arraybuffer-properties] ( ./no-nonstandard-arraybuffer-properties.md ) | disallow non-standard static properties on ` ArrayBuffer ` class. | |
411
415
| [ es-x/no-nonstandard-arraybuffer-prototype-properties] ( ./no-nonstandard-arraybuffer-prototype-properties.md ) | disallow non-standard properties on ArrayBuffer instance. | |
416
+ | [ es-x/no-nonstandard-asyncdisposablestack-properties] ( ./no-nonstandard-asyncdisposablestack-properties.md ) | disallow non-standard static properties on ` AsyncDisposableStack ` class. | |
417
+ | [ es-x/no-nonstandard-asyncdisposablestack-prototype-properties] ( ./no-nonstandard-asyncdisposablestack-prototype-properties.md ) | disallow non-standard properties on AsyncDisposableStack instance. | |
412
418
| [ es-x/no-nonstandard-atomics-properties] ( ./no-nonstandard-atomics-properties.md ) | disallow non-standard static properties on ` Atomics ` . | |
413
419
| [ es-x/no-nonstandard-bigint-properties] ( ./no-nonstandard-bigint-properties.md ) | disallow non-standard static properties on ` BigInt ` class. | |
414
420
| [ es-x/no-nonstandard-bigint-prototype-properties] ( ./no-nonstandard-bigint-prototype-properties.md ) | disallow non-standard properties on BigInt instance. | |
@@ -418,6 +424,8 @@ Rules in this category are not included in any preset.
418
424
| [ es-x/no-nonstandard-dataview-prototype-properties] ( ./no-nonstandard-dataview-prototype-properties.md ) | disallow non-standard properties on DataView instance. | |
419
425
| [ es-x/no-nonstandard-date-properties] ( ./no-nonstandard-date-properties.md ) | disallow non-standard static properties on ` Date ` class. | |
420
426
| [ es-x/no-nonstandard-date-prototype-properties] ( ./no-nonstandard-date-prototype-properties.md ) | disallow non-standard properties on Date instance. | |
427
+ | [ es-x/no-nonstandard-disposablestack-properties] ( ./no-nonstandard-disposablestack-properties.md ) | disallow non-standard static properties on ` DisposableStack ` class. | |
428
+ | [ es-x/no-nonstandard-disposablestack-prototype-properties] ( ./no-nonstandard-disposablestack-prototype-properties.md ) | disallow non-standard properties on DisposableStack instance. | |
421
429
| [ es-x/no-nonstandard-error-properties] ( ./no-nonstandard-error-properties.md ) | disallow non-standard static properties on ` Error ` class. | |
422
430
| [ es-x/no-nonstandard-finalizationregistry-properties] ( ./no-nonstandard-finalizationregistry-properties.md ) | disallow non-standard static properties on ` FinalizationRegistry ` class. | |
423
431
| [ es-x/no-nonstandard-finalizationregistry-prototype-properties] ( ./no-nonstandard-finalizationregistry-prototype-properties.md ) | disallow non-standard properties on FinalizationRegistry instance. | |
0 commit comments