Skip to content

Commit

Permalink
0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ota-meshi committed May 25, 2021
1 parent d073f8a commit 6e48932
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion docs/rules/optimal-quantifier-concatenation.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ pageClass: "rule-details"
sidebarDepth: 0
title: "regexp/optimal-quantifier-concatenation"
description: "require optimal quantifiers for concatenated quantifiers"
since: "v0.11.0"
---
# regexp/optimal-quantifier-concatenation

> require optimal quantifiers for concatenated quantifiers
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
- :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.

## :book: Rule Details
Expand Down Expand Up @@ -45,6 +45,10 @@ var foo = /\w+(?:(a)|b)*/;

Nothing.

## :rocket: Version

This rule was introduced in eslint-plugin-regexp v0.11.0

## :mag: Implementation

- [Rule source](https://github.com/ota-meshi/eslint-plugin-regexp/blob/master/lib/rules/optimal-quantifier-concatenation.ts)
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-regexp",
"version": "0.10.0",
"version": "0.11.0",
"description": "ESLint plugin for finding RegExp mistakes and RegExp style guide violations.",
"main": "dist/index.js",
"files": [
Expand Down

0 comments on commit 6e48932

Please sign in to comment.