Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release eslint-plugin-regexp (next) #635

Merged
merged 1 commit into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,20 @@
"calm-onions-yell",
"clean-kids-mate",
"clever-jobs-clap",
"cold-nails-teach",
"curly-ducks-fly",
"curvy-shoes-kiss",
"cyan-rats-attend",
"cyan-waves-notice",
"dry-horses-punch",
"early-guests-hug",
"early-islands-press",
"early-islands-press2",
"friendly-walls-reply",
"gold-baboons-clap",
"green-peaches-explode",
"heavy-rings-reply",
"hungry-eels-check",
"hungry-spoons-mix",
"itchy-trains-exist",
"khaki-colts-tell",
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# eslint-plugin-regexp

## 2.0.0-next.11

### Major Changes

- Add `regexp/simplify-set-operations` rule ([#595](https://github.com/ota-meshi/eslint-plugin-regexp/pull/595))

- Add `regexp/no-empty-string-literal` rule ([#632](https://github.com/ota-meshi/eslint-plugin-regexp/pull/632))

### Minor Changes

- Add support for string literal to `regexp/no-empty-alternative` ([#633](https://github.com/ota-meshi/eslint-plugin-regexp/pull/633))

- Improve `regexp/negation` rule to report nested negation character classes ([#595](https://github.com/ota-meshi/eslint-plugin-regexp/pull/595))

### Patch Changes

- fix: update regexpp ([#634](https://github.com/ota-meshi/eslint-plugin-regexp/pull/634))

## 2.0.0-next.10

### Major Changes
Expand Down
3 changes: 2 additions & 1 deletion docs/rules/no-empty-string-literal.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ pageClass: "rule-details"
sidebarDepth: 0
title: "regexp/no-empty-string-literal"
description: "disallow empty string literals in character classes"
since: "v2.0.0-next.11"
---
# regexp/no-empty-string-literal

Expand Down Expand Up @@ -51,7 +52,7 @@ Nothing.

## :rocket: Version

:exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
This rule was introduced in eslint-plugin-regexp v2.0.0-next.11

## :mag: Implementation

Expand Down
3 changes: 2 additions & 1 deletion docs/rules/simplify-set-operations.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ pageClass: "rule-details"
sidebarDepth: 0
title: "regexp/simplify-set-operations"
description: "require simplify set operations"
since: "v2.0.0-next.11"
---
# regexp/simplify-set-operations

Expand Down Expand Up @@ -84,7 +85,7 @@ Nothing.

## :rocket: Version

:exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
This rule was introduced in eslint-plugin-regexp v2.0.0-next.11

## :mag: Implementation

Expand Down
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": "2.0.0-next.10",
"version": "2.0.0-next.11",
"description": "ESLint plugin for finding RegExp mistakes and RegExp style guide violations.",
"engines": {
"node": "^18 || >=20"
Expand Down