Skip to content

Commit 128c603

Browse files
committed
7.7.0
1 parent cb02ded commit 128c603

8 files changed

+36
-8
lines changed

docs/rules/no-set-prototype-difference.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-set-prototype-difference"
33
description: "disallow the `Set.prototype.difference` method"
4+
since: "v7.7.0"
45
---
56

67
# es-x/no-set-prototype-difference
78
> disallow the `Set.prototype.difference` 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] and [no-set-methods]
1111

1212
This rule reports ES2025 [`Set.prototype.difference`](https://github.com/tc39/proposal-set-methods) methods as errors.
@@ -28,6 +28,10 @@ a.difference(b)
2828

2929
</eslint-playground>
3030

31+
## 🚀 Version
32+
33+
This rule was introduced in v7.7.0.
34+
3135
## 📚 References
3236

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

docs/rules/no-set-prototype-intersection.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-set-prototype-intersection"
33
description: "disallow the `Set.prototype.intersection` method"
4+
since: "v7.7.0"
45
---
56

67
# es-x/no-set-prototype-intersection
78
> disallow the `Set.prototype.intersection` 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] and [no-set-methods]
1111

1212
This rule reports ES2025 [`Set.prototype.intersection`](https://github.com/tc39/proposal-set-methods) methods as errors.
@@ -28,6 +28,10 @@ a.intersection(b)
2828

2929
</eslint-playground>
3030

31+
## 🚀 Version
32+
33+
This rule was introduced in v7.7.0.
34+
3135
## 📚 References
3236

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

docs/rules/no-set-prototype-isdisjointfrom.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-set-prototype-isdisjointfrom"
33
description: "disallow the `Set.prototype.isDisjointFrom` method"
4+
since: "v7.7.0"
45
---
56

67
# es-x/no-set-prototype-isdisjointfrom
78
> disallow the `Set.prototype.isDisjointFrom` 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] and [no-set-methods]
1111

1212
This rule reports ES2025 [`Set.prototype.isDisjointFrom`](https://github.com/tc39/proposal-set-methods) methods as errors.
@@ -28,6 +28,10 @@ a.isDisjointFrom(b)
2828

2929
</eslint-playground>
3030

31+
## 🚀 Version
32+
33+
This rule was introduced in v7.7.0.
34+
3135
## 📚 References
3236

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

docs/rules/no-set-prototype-issubsetof.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-set-prototype-issubsetof"
33
description: "disallow the `Set.prototype.isSubsetOf` method"
4+
since: "v7.7.0"
45
---
56

67
# es-x/no-set-prototype-issubsetof
78
> disallow the `Set.prototype.isSubsetOf` 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] and [no-set-methods]
1111

1212
This rule reports ES2025 [`Set.prototype.isSubsetOf`](https://github.com/tc39/proposal-set-methods) methods as errors.
@@ -28,6 +28,10 @@ a.isSubsetOf(b)
2828

2929
</eslint-playground>
3030

31+
## 🚀 Version
32+
33+
This rule was introduced in v7.7.0.
34+
3135
## 📚 References
3236

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

docs/rules/no-set-prototype-issupersetof.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-set-prototype-issupersetof"
33
description: "disallow the `Set.prototype.isSupersetOf` method"
4+
since: "v7.7.0"
45
---
56

67
# es-x/no-set-prototype-issupersetof
78
> disallow the `Set.prototype.isSupersetOf` 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] and [no-set-methods]
1111

1212
This rule reports ES2025 [`Set.prototype.isSupersetOf`](https://github.com/tc39/proposal-set-methods) methods as errors.
@@ -28,6 +28,10 @@ a.isSupersetOf(b)
2828

2929
</eslint-playground>
3030

31+
## 🚀 Version
32+
33+
This rule was introduced in v7.7.0.
34+
3135
## 📚 References
3236

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

docs/rules/no-set-prototype-symmetricdifference.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-set-prototype-symmetricdifference"
33
description: "disallow the `Set.prototype.symmetricDifference` method"
4+
since: "v7.7.0"
45
---
56

67
# es-x/no-set-prototype-symmetricdifference
78
> disallow the `Set.prototype.symmetricDifference` 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] and [no-set-methods]
1111

1212
This rule reports ES2025 [`Set.prototype.symmetricDifference`](https://github.com/tc39/proposal-set-methods) methods as errors.
@@ -28,6 +28,10 @@ a.symmetricDifference(b)
2828

2929
</eslint-playground>
3030

31+
## 🚀 Version
32+
33+
This rule was introduced in v7.7.0.
34+
3135
## 📚 References
3236

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

docs/rules/no-set-prototype-union.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-set-prototype-union"
33
description: "disallow the `Set.prototype.union` method"
4+
since: "v7.7.0"
45
---
56

67
# es-x/no-set-prototype-union
78
> disallow the `Set.prototype.union` 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] and [no-set-methods]
1111

1212
This rule reports ES2025 [`Set.prototype.union`](https://github.com/tc39/proposal-set-methods) methods as errors.
@@ -28,6 +28,10 @@ a.union(b)
2828

2929
</eslint-playground>
3030

31+
## 🚀 Version
32+
33+
This rule was introduced in v7.7.0.
34+
3135
## 📚 References
3236

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-es-x",
3-
"version": "7.6.0",
3+
"version": "7.7.0",
44
"description": "ESLint plugin about ECMAScript syntactic features.",
55
"engines": {
66
"node": "^14.18.0 || >=16.0.0"

0 commit comments

Comments
 (0)