Skip to content

Commit b997768

Browse files
committed
7.1.0
1 parent 0d783bd commit b997768

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

docs/rules/no-atomics-waitasync.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: "es-x/no-atomics-waitasync"
33
description: "disallow the `Atomics.waitAsync` method"
4+
since: "v7.1.0"
45
---
56

67
# es-x/no-atomics-waitasync
78
> disallow the `Atomics.waitAsync` 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: `plugin:es-x/no-new-in-esnext`
1111

1212
## 💡 Examples
@@ -22,6 +22,10 @@ Atomics.waitAsync(i32a, 0, 0, 1000)
2222

2323
</eslint-playground>
2424

25+
## 🚀 Version
26+
27+
This rule was introduced in v7.1.0.
28+
2529
## 📚 References
2630

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

docs/rules/no-string-prototype-iswellformed-towellformed.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: "es-x/no-string-prototype-iswellformed-towellformed"
33
description: "disallow the `String.prototype.{isWellFormed,toWellFormed}` methods"
4+
since: "v7.1.0"
45
---
56

67
# es-x/no-string-prototype-iswellformed-towellformed
78
> disallow the `String.prototype.{isWellFormed,toWellFormed}` methods
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: `plugin:es-x/no-new-in-esnext`
1111

1212
## 💡 Examples
@@ -37,6 +37,10 @@ rules:
3737
Configure the aggressive mode for only this rule.
3838
This is prior to the `settings['es-x'].aggressive` setting.
3939

40+
## 🚀 Version
41+
42+
This rule was introduced in v7.1.0.
43+
4044
## 📚 References
4145

4246
- [Rule source](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/lib/rules/no-string-prototype-iswellformed-towellformed.js)

package.json

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

0 commit comments

Comments
 (0)