diff --git a/docs/rules/no-regexp-v-flag.md b/docs/rules/no-regexp-v-flag.md index 57e8049d..14755587 100644 --- a/docs/rules/no-regexp-v-flag.md +++ b/docs/rules/no-regexp-v-flag.md @@ -1,12 +1,12 @@ --- title: "es-x/no-regexp-v-flag" description: "disallow RegExp `v` flag" +since: "v7.2.0" --- # es-x/no-regexp-v-flag > disallow RegExp `v` flag -- ❗ ***This rule has not been released yet.*** - ✅ The following configurations enable this rule: `plugin:es-x/no-new-in-esnext` 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 +## 🚀 Version + +This rule was introduced in v7.2.0. + ## 📚 References - [Rule source](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/lib/rules/no-regexp-v-flag.js) diff --git a/package.json b/package.json index 53b08806..0057b28b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-es-x", - "version": "7.1.0", + "version": "7.2.0", "description": "ESLint plugin about ECMAScript syntactic features.", "engines": { "node": "^14.18.0 || >=16.0.0"