Skip to content

Commit b24601a

Browse files
committed
update
1 parent a4f26c1 commit b24601a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.changeset/early-islands-press.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
"eslint-plugin-regexp": minor
2+
"eslint-plugin-regexp": major
33
---
44

55
Add `regexp/simplify-set-operations` rule

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ The `plugin:regexp/all` config enables all rules. It's meant for testing, not fo
167167
| [prefer-regexp-test](https://ota-meshi.github.io/eslint-plugin-regexp/rules/prefer-regexp-test.html) | enforce that `RegExp#test` is used instead of `String#match` and `RegExp#exec` | | | 🔧 | |
168168
| [require-unicode-regexp](https://ota-meshi.github.io/eslint-plugin-regexp/rules/require-unicode-regexp.html) | enforce the use of the `u` flag | | | 🔧 | |
169169
| [require-unicode-sets-regexp](https://ota-meshi.github.io/eslint-plugin-regexp/rules/require-unicode-sets-regexp.html) | enforce the use of the `v` flag | | | 🔧 | |
170-
| [simplify-set-operations](https://ota-meshi.github.io/eslint-plugin-regexp/rules/simplify-set-operations.html) | require the set operations to be simple || | 🔧 | |
170+
| [simplify-set-operations](https://ota-meshi.github.io/eslint-plugin-regexp/rules/simplify-set-operations.html) | require simplify set operations || | 🔧 | |
171171
| [sort-alternatives](https://ota-meshi.github.io/eslint-plugin-regexp/rules/sort-alternatives.html) | sort alternatives if order doesn't matter | | | 🔧 | |
172172
| [use-ignore-case](https://ota-meshi.github.io/eslint-plugin-regexp/rules/use-ignore-case.html) | use the `i` flag if it simplifies the pattern || | 🔧 | |
173173

docs/rules/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ sidebarDepth: 0
7474
| [prefer-regexp-test](prefer-regexp-test.md) | enforce that `RegExp#test` is used instead of `String#match` and `RegExp#exec` | | | 🔧 | |
7575
| [require-unicode-regexp](require-unicode-regexp.md) | enforce the use of the `u` flag | | | 🔧 | |
7676
| [require-unicode-sets-regexp](require-unicode-sets-regexp.md) | enforce the use of the `v` flag | | | 🔧 | |
77-
| [simplify-set-operations](simplify-set-operations.md) | require the set operations to be simple || | 🔧 | |
77+
| [simplify-set-operations](simplify-set-operations.md) | require simplify set operations || | 🔧 | |
7878
| [sort-alternatives](sort-alternatives.md) | sort alternatives if order doesn't matter | | | 🔧 | |
7979
| [use-ignore-case](use-ignore-case.md) | use the `i` flag if it simplifies the pattern || | 🔧 | |
8080

docs/rules/simplify-set-operations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
pageClass: "rule-details"
33
sidebarDepth: 0
44
title: "regexp/simplify-set-operations"
5-
description: "require the set operations to be simple"
5+
description: "require simplify set operations"
66
---
77
# regexp/simplify-set-operations
88

@@ -12,7 +12,7 @@ description: "require the set operations to be simple"
1212

1313
<!-- end auto-generated rule header -->
1414

15-
> require the set operations to be simple
15+
> require simplify set operations
1616
1717
## :book: Rule Details
1818

0 commit comments

Comments
 (0)