Skip to content

Commit 6e48932

Browse files
committed
0.11.0
1 parent d073f8a commit 6e48932

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

docs/rules/optimal-quantifier-concatenation.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/optimal-quantifier-concatenation"
55
description: "require optimal quantifiers for concatenated quantifiers"
6+
since: "v0.11.0"
67
---
78
# regexp/optimal-quantifier-concatenation
89

910
> require optimal quantifiers for concatenated quantifiers
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
@@ -45,6 +45,10 @@ var foo = /\w+(?:(a)|b)*/;
4545

4646
Nothing.
4747

48+
## :rocket: Version
49+
50+
This rule was introduced in eslint-plugin-regexp v0.11.0
51+
4852
## :mag: Implementation
4953

5054
- [Rule source](https://github.com/ota-meshi/eslint-plugin-regexp/blob/master/lib/rules/optimal-quantifier-concatenation.ts)

package-lock.json

Lines changed: 1 addition & 1 deletion
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": "0.10.0",
3+
"version": "0.11.0",
44
"description": "ESLint plugin for finding RegExp mistakes and RegExp style guide violations.",
55
"main": "dist/index.js",
66
"files": [

0 commit comments

Comments
 (0)