Skip to content

Commit 6b22440

Browse files
committed
8.1.0
1 parent 58029a5 commit 6b22440

19 files changed

+91
-19
lines changed

docs/rules/no-dynamic-import-options.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-dynamic-import-options"
33
description: "disallow the second parameter to `import()`"
4+
since: "v8.1.0"
45
---
56

67
# es-x/no-dynamic-import-options
78
> disallow the second parameter to `import()`
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-import-attributes] and [no-new-in-esnext]
1111

1212
This rule reports the second parameter to `import()` as errors.\
@@ -25,6 +25,10 @@ const m = await import(source, options)
2525

2626
</eslint-playground>
2727

28+
## 🚀 Version
29+
30+
This rule was introduced in v8.1.0.
31+
2832
## 📚 References
2933

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

docs/rules/no-import-attributes.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-import-attributes"
33
description: "disallow Import Attributes"
4+
since: "v8.1.0"
45
---
56

67
# es-x/no-import-attributes
78
> disallow Import Attributes
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-import-attributes] and [no-new-in-esnext]
1111

1212
This rule reports ES2025 [Import Attributes](https://github.com/tc39/proposal-import-attributes) as errors.
@@ -25,6 +25,10 @@ const a = await import("foo.json", { with: { type: "json" } });
2525

2626
</eslint-playground>
2727

28+
## 🚀 Version
29+
30+
This rule was introduced in v8.1.0.
31+
2832
## 📚 References
2933

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

docs/rules/no-iterator-prototype-drop.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-iterator-prototype-drop"
33
description: "disallow the `Iterator.prototype.drop` method"
4+
since: "v8.1.0"
45
---
56

67
# es-x/no-iterator-prototype-drop
78
> disallow the `Iterator.prototype.drop` 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-iterator-helpers] and [no-new-in-esnext]
1111

1212
This rule reports ES2025 [`Iterator.prototype.drop`](https://github.com/tc39/proposal-iterator-helpers) as errors.\
@@ -29,6 +29,10 @@ function* naturals() {
2929

3030
</eslint-playground>
3131

32+
## 🚀 Version
33+
34+
This rule was introduced in v8.1.0.
35+
3236
## 📚 References
3337

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

docs/rules/no-iterator-prototype-every.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-iterator-prototype-every"
33
description: "disallow the `Iterator.prototype.every` method"
4+
since: "v8.1.0"
45
---
56

67
# es-x/no-iterator-prototype-every
78
> disallow the `Iterator.prototype.every` 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-iterator-helpers] and [no-new-in-esnext]
1111

1212
This rule reports ES2025 [`Iterator.prototype.every`](https://github.com/tc39/proposal-iterator-helpers) as errors.\
@@ -29,6 +29,10 @@ function* naturals() {
2929

3030
</eslint-playground>
3131

32+
## 🚀 Version
33+
34+
This rule was introduced in v8.1.0.
35+
3236
## 📚 References
3337

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

docs/rules/no-iterator-prototype-filter.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-iterator-prototype-filter"
33
description: "disallow the `Iterator.prototype.filter` method"
4+
since: "v8.1.0"
45
---
56

67
# es-x/no-iterator-prototype-filter
78
> disallow the `Iterator.prototype.filter` 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-iterator-helpers] and [no-new-in-esnext]
1111

1212
This rule reports ES2025 [`Iterator.prototype.filter`](https://github.com/tc39/proposal-iterator-helpers) as errors.\
@@ -29,6 +29,10 @@ function* naturals() {
2929

3030
</eslint-playground>
3131

32+
## 🚀 Version
33+
34+
This rule was introduced in v8.1.0.
35+
3236
## 📚 References
3337

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

docs/rules/no-iterator-prototype-find.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-iterator-prototype-find"
33
description: "disallow the `Iterator.prototype.find` method"
4+
since: "v8.1.0"
45
---
56

67
# es-x/no-iterator-prototype-find
78
> disallow the `Iterator.prototype.find` 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-iterator-helpers] and [no-new-in-esnext]
1111

1212
This rule reports ES2025 [`Iterator.prototype.find`](https://github.com/tc39/proposal-iterator-helpers) as errors.\
@@ -29,6 +29,10 @@ function* naturals() {
2929

3030
</eslint-playground>
3131

32+
## 🚀 Version
33+
34+
This rule was introduced in v8.1.0.
35+
3236
## 📚 References
3337

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

docs/rules/no-iterator-prototype-flatmap.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-iterator-prototype-flatmap"
33
description: "disallow the `Iterator.prototype.flatMap` method"
4+
since: "v8.1.0"
45
---
56

67
# es-x/no-iterator-prototype-flatmap
78
> disallow the `Iterator.prototype.flatMap` 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-iterator-helpers] and [no-new-in-esnext]
1111

1212
This rule reports ES2025 [`Iterator.prototype.flatMap`](https://github.com/tc39/proposal-iterator-helpers) as errors.\
@@ -29,6 +29,10 @@ function* naturals() {
2929

3030
</eslint-playground>
3131

32+
## 🚀 Version
33+
34+
This rule was introduced in v8.1.0.
35+
3236
## 📚 References
3337

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

docs/rules/no-iterator-prototype-foreach.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-iterator-prototype-foreach"
33
description: "disallow the `Iterator.prototype.forEach` method"
4+
since: "v8.1.0"
45
---
56

67
# es-x/no-iterator-prototype-foreach
78
> disallow the `Iterator.prototype.forEach` 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-iterator-helpers] and [no-new-in-esnext]
1111

1212
This rule reports ES2025 [`Iterator.prototype.forEach`](https://github.com/tc39/proposal-iterator-helpers) as errors.\
@@ -29,6 +29,10 @@ function* naturals() {
2929

3030
</eslint-playground>
3131

32+
## 🚀 Version
33+
34+
This rule was introduced in v8.1.0.
35+
3236
## 📚 References
3337

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

docs/rules/no-iterator-prototype-map.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-iterator-prototype-map"
33
description: "disallow the `Iterator.prototype.map` method"
4+
since: "v8.1.0"
45
---
56

67
# es-x/no-iterator-prototype-map
78
> disallow the `Iterator.prototype.map` 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-iterator-helpers] and [no-new-in-esnext]
1111

1212
This rule reports ES2025 [`Iterator.prototype.map`](https://github.com/tc39/proposal-iterator-helpers) as errors.\
@@ -29,6 +29,10 @@ function* naturals() {
2929

3030
</eslint-playground>
3131

32+
## 🚀 Version
33+
34+
This rule was introduced in v8.1.0.
35+
3236
## 📚 References
3337

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

docs/rules/no-iterator-prototype-reduce.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-iterator-prototype-reduce"
33
description: "disallow the `Iterator.prototype.reduce` method"
4+
since: "v8.1.0"
45
---
56

67
# es-x/no-iterator-prototype-reduce
78
> disallow the `Iterator.prototype.reduce` 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-iterator-helpers] and [no-new-in-esnext]
1111

1212
This rule reports ES2025 [`Iterator.prototype.reduce`](https://github.com/tc39/proposal-iterator-helpers) as errors.\
@@ -29,6 +29,10 @@ function* naturals() {
2929

3030
</eslint-playground>
3131

32+
## 🚀 Version
33+
34+
This rule was introduced in v8.1.0.
35+
3236
## 📚 References
3337

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

0 commit comments

Comments
 (0)