Skip to content

Commit a4a0b99

Browse files
committed
1.11.0
1 parent f6696e6 commit a4a0b99

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

docs/rules/no-extra-lookaround-assertions.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ pageClass: "rule-details"
33
sidebarDepth: 0
44
title: "regexp/no-extra-lookaround-assertions"
55
description: "disallow unnecessary nested lookaround assertions"
6+
since: "v1.11.0"
67
---
78
# regexp/no-extra-lookaround-assertions
89

910
> disallow unnecessary nested lookaround assertions
1011
11-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
1212
- :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
1313

1414
## :book: Rule Details
@@ -55,6 +55,10 @@ var re4 = /(?<=(?<=a|A)b)c/u;
5555
5656
Nothing.
5757
58+
## :rocket: Version
59+
60+
This rule was introduced in eslint-plugin-regexp v1.11.0
61+
5862
## :mag: Implementation
5963
6064
- [Rule source](https://github.com/ota-meshi/eslint-plugin-regexp/blob/master/lib/rules/no-extra-lookaround-assertions.ts)

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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-regexp",
3-
"version": "1.10.0",
3+
"version": "1.11.0",
44
"description": "ESLint plugin for finding RegExp mistakes and RegExp style guide violations.",
55
"engines": {
66
"node": "^12 || >=14"

0 commit comments

Comments
 (0)