Skip to content

Commit 03bacf7

Browse files
committed
0.2.0
1 parent 9cf4beb commit 03bacf7

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

docs/rules/prefer-quantifier.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/prefer-quantifier"
55
description: "enforce using quantifier"
6+
since: "v0.2.0"
67
---
78
# regexp/prefer-quantifier
89

910
> enforce using quantifier
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
@@ -33,6 +33,10 @@ var foo = /\d\d\d\d-\d\d-\d\d/;
3333

3434
Nothing.
3535

36+
## :rocket: Version
37+
38+
This rule was introduced in eslint-plugin-regexp v0.2.0
39+
3640
## :mag: Implementation
3741

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

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.1.1",
3+
"version": "0.2.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)