From 128c603619038a584f778f4327534f98626b76a8 Mon Sep 17 00:00:00 2001 From: yosuke ota Date: Fri, 7 Jun 2024 09:33:39 +0900 Subject: [PATCH] 7.7.0 --- docs/rules/no-set-prototype-difference.md | 6 +++++- docs/rules/no-set-prototype-intersection.md | 6 +++++- docs/rules/no-set-prototype-isdisjointfrom.md | 6 +++++- docs/rules/no-set-prototype-issubsetof.md | 6 +++++- docs/rules/no-set-prototype-issupersetof.md | 6 +++++- docs/rules/no-set-prototype-symmetricdifference.md | 6 +++++- docs/rules/no-set-prototype-union.md | 6 +++++- package.json | 2 +- 8 files changed, 36 insertions(+), 8 deletions(-) diff --git a/docs/rules/no-set-prototype-difference.md b/docs/rules/no-set-prototype-difference.md index 48446fc5..bac62e57 100644 --- a/docs/rules/no-set-prototype-difference.md +++ b/docs/rules/no-set-prototype-difference.md @@ -1,12 +1,12 @@ --- title: "es-x/no-set-prototype-difference" description: "disallow the `Set.prototype.difference` method" +since: "v7.7.0" --- # es-x/no-set-prototype-difference > disallow the `Set.prototype.difference` method -- ❗ ***This rule has not been released yet.*** - ✅ The following configurations enable this rule: [no-new-in-esnext] and [no-set-methods] This rule reports ES2025 [`Set.prototype.difference`](https://github.com/tc39/proposal-set-methods) methods as errors. @@ -28,6 +28,10 @@ a.difference(b) +## 🚀 Version + +This rule was introduced in v7.7.0. + ## 📚 References - [Rule source](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/lib/rules/no-set-prototype-difference.js) diff --git a/docs/rules/no-set-prototype-intersection.md b/docs/rules/no-set-prototype-intersection.md index 91a55b49..05e85fb4 100644 --- a/docs/rules/no-set-prototype-intersection.md +++ b/docs/rules/no-set-prototype-intersection.md @@ -1,12 +1,12 @@ --- title: "es-x/no-set-prototype-intersection" description: "disallow the `Set.prototype.intersection` method" +since: "v7.7.0" --- # es-x/no-set-prototype-intersection > disallow the `Set.prototype.intersection` method -- ❗ ***This rule has not been released yet.*** - ✅ The following configurations enable this rule: [no-new-in-esnext] and [no-set-methods] This rule reports ES2025 [`Set.prototype.intersection`](https://github.com/tc39/proposal-set-methods) methods as errors. @@ -28,6 +28,10 @@ a.intersection(b) +## 🚀 Version + +This rule was introduced in v7.7.0. + ## 📚 References - [Rule source](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/lib/rules/no-set-prototype-intersection.js) diff --git a/docs/rules/no-set-prototype-isdisjointfrom.md b/docs/rules/no-set-prototype-isdisjointfrom.md index f9ffb7a0..14f1ceaa 100644 --- a/docs/rules/no-set-prototype-isdisjointfrom.md +++ b/docs/rules/no-set-prototype-isdisjointfrom.md @@ -1,12 +1,12 @@ --- title: "es-x/no-set-prototype-isdisjointfrom" description: "disallow the `Set.prototype.isDisjointFrom` method" +since: "v7.7.0" --- # es-x/no-set-prototype-isdisjointfrom > disallow the `Set.prototype.isDisjointFrom` method -- ❗ ***This rule has not been released yet.*** - ✅ The following configurations enable this rule: [no-new-in-esnext] and [no-set-methods] This rule reports ES2025 [`Set.prototype.isDisjointFrom`](https://github.com/tc39/proposal-set-methods) methods as errors. @@ -28,6 +28,10 @@ a.isDisjointFrom(b) +## 🚀 Version + +This rule was introduced in v7.7.0. + ## 📚 References - [Rule source](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/lib/rules/no-set-prototype-isdisjointfrom.js) diff --git a/docs/rules/no-set-prototype-issubsetof.md b/docs/rules/no-set-prototype-issubsetof.md index b1d8d074..4a188218 100644 --- a/docs/rules/no-set-prototype-issubsetof.md +++ b/docs/rules/no-set-prototype-issubsetof.md @@ -1,12 +1,12 @@ --- title: "es-x/no-set-prototype-issubsetof" description: "disallow the `Set.prototype.isSubsetOf` method" +since: "v7.7.0" --- # es-x/no-set-prototype-issubsetof > disallow the `Set.prototype.isSubsetOf` method -- ❗ ***This rule has not been released yet.*** - ✅ The following configurations enable this rule: [no-new-in-esnext] and [no-set-methods] This rule reports ES2025 [`Set.prototype.isSubsetOf`](https://github.com/tc39/proposal-set-methods) methods as errors. @@ -28,6 +28,10 @@ a.isSubsetOf(b) +## 🚀 Version + +This rule was introduced in v7.7.0. + ## 📚 References - [Rule source](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/lib/rules/no-set-prototype-issubsetof.js) diff --git a/docs/rules/no-set-prototype-issupersetof.md b/docs/rules/no-set-prototype-issupersetof.md index 03d8b1b2..a5611969 100644 --- a/docs/rules/no-set-prototype-issupersetof.md +++ b/docs/rules/no-set-prototype-issupersetof.md @@ -1,12 +1,12 @@ --- title: "es-x/no-set-prototype-issupersetof" description: "disallow the `Set.prototype.isSupersetOf` method" +since: "v7.7.0" --- # es-x/no-set-prototype-issupersetof > disallow the `Set.prototype.isSupersetOf` method -- ❗ ***This rule has not been released yet.*** - ✅ The following configurations enable this rule: [no-new-in-esnext] and [no-set-methods] This rule reports ES2025 [`Set.prototype.isSupersetOf`](https://github.com/tc39/proposal-set-methods) methods as errors. @@ -28,6 +28,10 @@ a.isSupersetOf(b) +## 🚀 Version + +This rule was introduced in v7.7.0. + ## 📚 References - [Rule source](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/lib/rules/no-set-prototype-issupersetof.js) diff --git a/docs/rules/no-set-prototype-symmetricdifference.md b/docs/rules/no-set-prototype-symmetricdifference.md index 53e9ff15..fd754d88 100644 --- a/docs/rules/no-set-prototype-symmetricdifference.md +++ b/docs/rules/no-set-prototype-symmetricdifference.md @@ -1,12 +1,12 @@ --- title: "es-x/no-set-prototype-symmetricdifference" description: "disallow the `Set.prototype.symmetricDifference` method" +since: "v7.7.0" --- # es-x/no-set-prototype-symmetricdifference > disallow the `Set.prototype.symmetricDifference` method -- ❗ ***This rule has not been released yet.*** - ✅ The following configurations enable this rule: [no-new-in-esnext] and [no-set-methods] This rule reports ES2025 [`Set.prototype.symmetricDifference`](https://github.com/tc39/proposal-set-methods) methods as errors. @@ -28,6 +28,10 @@ a.symmetricDifference(b) +## 🚀 Version + +This rule was introduced in v7.7.0. + ## 📚 References - [Rule source](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/lib/rules/no-set-prototype-symmetricdifference.js) diff --git a/docs/rules/no-set-prototype-union.md b/docs/rules/no-set-prototype-union.md index c7a4fb63..51d30aca 100644 --- a/docs/rules/no-set-prototype-union.md +++ b/docs/rules/no-set-prototype-union.md @@ -1,12 +1,12 @@ --- title: "es-x/no-set-prototype-union" description: "disallow the `Set.prototype.union` method" +since: "v7.7.0" --- # es-x/no-set-prototype-union > disallow the `Set.prototype.union` method -- ❗ ***This rule has not been released yet.*** - ✅ The following configurations enable this rule: [no-new-in-esnext] and [no-set-methods] This rule reports ES2025 [`Set.prototype.union`](https://github.com/tc39/proposal-set-methods) methods as errors. @@ -28,6 +28,10 @@ a.union(b) +## 🚀 Version + +This rule was introduced in v7.7.0. + ## 📚 References - [Rule source](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/lib/rules/no-set-prototype-union.js) diff --git a/package.json b/package.json index 61f632fa..31e5ed07 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-es-x", - "version": "7.6.0", + "version": "7.7.0", "description": "ESLint plugin about ECMAScript syntactic features.", "engines": { "node": "^14.18.0 || >=16.0.0"