Skip to content

Commit 012956e

Browse files
committed
8.7.0
1 parent 3c06928 commit 012956e

12 files changed

+56
-17
lines changed

docs/rules/no-array-fromasync.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: "es-x/no-array-fromasync"
33
description: "disallow the `Array.fromAsync` method"
4+
since: "v8.7.0"
45
---
56

67
# es-x/no-array-fromasync
78
> disallow the `Array.fromAsync` method
89
9-
- ❗ <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
1010
- ✅ The following configurations enable this rule: [no-new-in-esnext]
1111

1212
This rule reports ES2026 [`Array.fromAsync` method](https://github.com/tc39/proposal-array-from-async) as errors.
@@ -46,6 +46,10 @@ This rule has an option.
4646
Configure the allowTestedProperty mode for only this rule.
4747
This is prior to the `settings['es-x'].allowTestedProperty` setting.
4848

49+
## 🚀 Version
50+
51+
This rule was introduced in v8.7.0.
52+
4953
## 📚 References
5054

5155
- [Rule source](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/lib/rules/no-array-fromasync.js)

docs/rules/no-asyncdisposablestack.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: "es-x/no-asyncdisposablestack"
33
description: "disallow the `AsyncDisposableStack` class"
4+
since: "v8.7.0"
45
---
56

67
# es-x/no-asyncdisposablestack
78
> disallow the `AsyncDisposableStack` class
89
9-
- ❗ <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
1010
- ✅ The following configurations enable this rule: [no-explicit-resource-management] and [no-new-in-esnext]
1111

1212
This rule reports ES2026 [`AsyncDisposableStack` class](https://github.com/tc39/proposal-explicit-resource-management) as errors.
@@ -24,6 +24,10 @@ let asyncdisposablestack = new AsyncDisposableStack()
2424

2525
</eslint-playground>
2626

27+
## 🚀 Version
28+
29+
This rule was introduced in v8.7.0.
30+
2731
## 📚 References
2832

2933
- [Rule source](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/lib/rules/no-asyncdisposablestack.js)

docs/rules/no-disposablestack.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: "es-x/no-disposablestack"
33
description: "disallow the `DisposableStack` class"
4+
since: "v8.7.0"
45
---
56

67
# es-x/no-disposablestack
78
> disallow the `DisposableStack` class
89
9-
- ❗ <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
1010
- ✅ The following configurations enable this rule: [no-explicit-resource-management] and [no-new-in-esnext]
1111

1212
This rule reports ES2026 [`DisposableStack` class](https://github.com/tc39/proposal-explicit-resource-management) as errors.
@@ -24,6 +24,10 @@ let disposablestack = new DisposableStack()
2424

2525
</eslint-playground>
2626

27+
## 🚀 Version
28+
29+
This rule was introduced in v8.7.0.
30+
2731
## 📚 References
2832

2933
- [Rule source](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/lib/rules/no-disposablestack.js)

docs/rules/no-error-iserror.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: "es-x/no-error-iserror"
33
description: "disallow the `Error.isError` method"
4+
since: "v8.7.0"
45
---
56

67
# es-x/no-error-iserror
78
> disallow the `Error.isError` method
89
9-
- ❗ <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
1010
- ✅ The following configurations enable this rule: [no-new-in-esnext]
1111

1212
This rule reports ES2026 [`Error.isError` method](https://github.com/tc39/proposal-is-error) as errors.
@@ -46,6 +46,10 @@ This rule has an option.
4646
Configure the allowTestedProperty mode for only this rule.
4747
This is prior to the `settings['es-x'].allowTestedProperty` setting.
4848

49+
## 🚀 Version
50+
51+
This rule was introduced in v8.7.0.
52+
4953
## 📚 References
5054

5155
- [Rule source](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/lib/rules/no-error-iserror.js)

docs/rules/no-nonstandard-asyncdisposablestack-properties.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
---
22
title: "es-x/no-nonstandard-asyncdisposablestack-properties"
33
description: "disallow non-standard static properties on `AsyncDisposableStack` class"
4+
since: "v8.7.0"
45
---
56

67
# es-x/no-nonstandard-asyncdisposablestack-properties
78
> disallow non-standard static properties on `AsyncDisposableStack` class
89
9-
- ❗ <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
10-
1110
This rule reports non-standard static properties on `AsyncDisposableStack` class as errors.
1211

1312
## 💡 Examples
@@ -50,6 +49,10 @@ An array of non-standard property names to allow.
5049
Configure the allowTestedProperty mode for only this rule.
5150
This is prior to the `settings['es-x'].allowTestedProperty` setting.
5251

52+
## 🚀 Version
53+
54+
This rule was introduced in v8.7.0.
55+
5356
## 📚 References
5457

5558
- [Rule source](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/lib/rules/no-nonstandard-asyncdisposablestack-properties.js)

docs/rules/no-nonstandard-asyncdisposablestack-prototype-properties.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
---
22
title: "es-x/no-nonstandard-asyncdisposablestack-prototype-properties"
33
description: "disallow non-standard properties on AsyncDisposableStack instance"
4+
since: "v8.7.0"
45
---
56

67
# es-x/no-nonstandard-asyncdisposablestack-prototype-properties
78
> disallow non-standard properties on AsyncDisposableStack instance
89
9-
- ❗ <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
10-
1110
This rule reports non-standard properties on AsyncDisposableStack instance as errors.
1211

1312
## 💡 Examples
@@ -51,6 +50,10 @@ An array of non-standard property names to allow.
5150
Configure the allowTestedProperty mode for only this rule.
5251
This is prior to the `settings['es-x'].allowTestedProperty` setting.
5352

53+
## 🚀 Version
54+
55+
This rule was introduced in v8.7.0.
56+
5457
## 📚 References
5558

5659
- [Rule source](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/lib/rules/no-nonstandard-asyncdisposablestack-prototype-properties.js)

docs/rules/no-nonstandard-disposablestack-properties.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
---
22
title: "es-x/no-nonstandard-disposablestack-properties"
33
description: "disallow non-standard static properties on `DisposableStack` class"
4+
since: "v8.7.0"
45
---
56

67
# es-x/no-nonstandard-disposablestack-properties
78
> disallow non-standard static properties on `DisposableStack` class
89
9-
- ❗ <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
10-
1110
This rule reports non-standard static properties on `DisposableStack` class as errors.
1211

1312
## 💡 Examples
@@ -50,6 +49,10 @@ An array of non-standard property names to allow.
5049
Configure the allowTestedProperty mode for only this rule.
5150
This is prior to the `settings['es-x'].allowTestedProperty` setting.
5251

52+
## 🚀 Version
53+
54+
This rule was introduced in v8.7.0.
55+
5356
## 📚 References
5457

5558
- [Rule source](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/lib/rules/no-nonstandard-disposablestack-properties.js)

docs/rules/no-nonstandard-disposablestack-prototype-properties.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
---
22
title: "es-x/no-nonstandard-disposablestack-prototype-properties"
33
description: "disallow non-standard properties on DisposableStack instance"
4+
since: "v8.7.0"
45
---
56

67
# es-x/no-nonstandard-disposablestack-prototype-properties
78
> disallow non-standard properties on DisposableStack instance
89
9-
- ❗ <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
10-
1110
This rule reports non-standard properties on DisposableStack instance as errors.
1211

1312
## 💡 Examples
@@ -51,6 +50,10 @@ An array of non-standard property names to allow.
5150
Configure the allowTestedProperty mode for only this rule.
5251
This is prior to the `settings['es-x'].allowTestedProperty` setting.
5352

53+
## 🚀 Version
54+
55+
This rule was introduced in v8.7.0.
56+
5457
## 📚 References
5558

5659
- [Rule source](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/lib/rules/no-nonstandard-disposablestack-prototype-properties.js)

docs/rules/no-nonstandard-error-properties.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
---
22
title: "es-x/no-nonstandard-error-properties"
33
description: "disallow non-standard static properties on `Error` class"
4+
since: "v8.7.0"
45
---
56

67
# es-x/no-nonstandard-error-properties
78
> disallow non-standard static properties on `Error` class
89
9-
- ❗ <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
10-
1110
This rule reports non-standard static properties on `Error` class as errors.
1211

1312
## 💡 Examples
@@ -50,6 +49,10 @@ An array of non-standard property names to allow.
5049
Configure the allowTestedProperty mode for only this rule.
5150
This is prior to the `settings['es-x'].allowTestedProperty` setting.
5251

52+
## 🚀 Version
53+
54+
This rule was introduced in v8.7.0.
55+
5356
## 📚 References
5457

5558
- [Rule source](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/lib/rules/no-nonstandard-error-properties.js)

docs/rules/no-suppressederror.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: "es-x/no-suppressederror"
33
description: "disallow the `SuppressedError` class"
4+
since: "v8.7.0"
45
---
56

67
# es-x/no-suppressederror
78
> disallow the `SuppressedError` class
89
9-
- ❗ <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
1010
- ✅ The following configurations enable this rule: [no-explicit-resource-management] and [no-new-in-esnext]
1111

1212
This rule reports ES2026 [`SuppressedError` class](https://github.com/tc39/proposal-explicit-resource-management) as errors.
@@ -24,6 +24,10 @@ let suppressederror = new SuppressedError()
2424

2525
</eslint-playground>
2626

27+
## 🚀 Version
28+
29+
This rule was introduced in v8.7.0.
30+
2731
## 📚 References
2832

2933
- [Rule source](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/lib/rules/no-suppressederror.js)

0 commit comments

Comments
 (0)