Skip to content

Commit d7de90a

Browse files
committed
7.2.0
1 parent c7bc9f8 commit d7de90a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

docs/rules/no-regexp-v-flag.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-regexp-v-flag"
33
description: "disallow RegExp `v` flag"
4+
since: "v7.2.0"
45
---
56

67
# es-x/no-regexp-v-flag
78
> disallow RegExp `v` flag
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
This rule reports ES2024 [RegExp `v` flag](https://github.com/tc39/proposal-regexp-v-flag) as errors.
@@ -25,6 +25,10 @@ const r2 = /[\p{Decimal_Number}--[0-9]]/v
2525

2626
</eslint-playground>
2727

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

3034
- [Rule source](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/lib/rules/no-regexp-v-flag.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.1.0",
3+
"version": "7.2.0",
44
"description": "ESLint plugin about ECMAScript syntactic features.",
55
"engines": {
66
"node": "^14.18.0 || >=16.0.0"

0 commit comments

Comments
 (0)