Skip to content

Commit c79d870

Browse files
committed
release: 1.5.31-beta.0
1 parent 52af89f commit c79d870

File tree

24 files changed

+61
-35
lines changed

24 files changed

+61
-35
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.31-next.0
1+
1.5.31-beta.0

eslint.config.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ declare module "@eslint/js";
22
declare module "eslint-plugin-eslint-comments";
33
declare module "eslint-plugin-eslint-plugin";
44
declare module "eslint-plugin-perfectionist";
5-
declare module "eslint-plugin-perfectionist/configs/recommended-natural";
65
declare module "eslint-plugin-unicorn";

eslint.config.mts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import eslintPluginPlugin from "eslint-plugin-eslint-plugin";
77
import importPlugin from "eslint-plugin-import-x";
88
import jsdocPlugin from "eslint-plugin-jsdoc";
99
import perfectionist from "eslint-plugin-perfectionist";
10-
import perfectionistNatural from "eslint-plugin-perfectionist/configs/recommended-natural";
1110
import simpleImportSortPlugin from "eslint-plugin-simple-import-sort";
1211
import unicornPlugin from "eslint-plugin-unicorn";
1312
import vitest from "eslint-plugin-vitest";
@@ -38,7 +37,6 @@ const config: FlatConfig[] = [
3837
["eslint-plugin"]: eslintPluginPlugin,
3938
["import-x"]: importPlugin,
4039
["jsdoc"]: jsdocPlugin,
41-
["perfectionist"]: perfectionist,
4240
["simple-import-sort"]: simpleImportSortPlugin,
4341
["unicorn"]: unicornPlugin,
4442
},
@@ -47,7 +45,7 @@ const config: FlatConfig[] = [
4745
eslint.configs.recommended,
4846
...tseslint.configs.strict,
4947
// ...tseslint.configs.strictTypeChecked,
50-
perfectionistNatural,
48+
perfectionist.configs["recommended-natural"],
5149
jsdocPlugin.configs["flat/recommended-typescript-error"],
5250
eslintPluginPlugin.configs["flat/all-type-checked"],
5351
// base config
@@ -158,7 +156,7 @@ const config: FlatConfig[] = [
158156
"warn",
159157
{
160158
type: "natural",
161-
"custom-groups": {
159+
customGroups: {
162160
id: ["_", "id", "key"],
163161
type: ["type", "kind"],
164162
meta: [
@@ -177,7 +175,7 @@ const config: FlatConfig[] = [
177175
"warn",
178176
{
179177
type: "natural",
180-
"custom-groups": {
178+
customGroups: {
181179
id: ["_", "id", "key"],
182180
type: ["type", "kind"],
183181
meta: [
@@ -190,7 +188,7 @@ const config: FlatConfig[] = [
190188
},
191189
groups: ["id", "type", "meta", "alias", "unknown"],
192190
order: "asc",
193-
"partition-by-comment": "Part:**",
191+
partitionByComment: "Part:**",
194192
},
195193
],
196194
"perfectionist/sort-union-types": [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-react/monorepo",
3-
"version": "1.5.31-next.0",
3+
"version": "1.5.31-beta.0",
44
"private": true,
55
"description": "A series of composable ESLint rules for libraries and frameworks that use React as a UI runtime.",
66
"keywords": [

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-react/core",
3-
"version": "1.5.31-next.0",
3+
"version": "1.5.31-beta.0",
44
"description": "ESLint React's ESLint utility module for static analysis of React core APIs and Patterns.",
55
"homepage": "https://github.com/rel1cx/eslint-react",
66
"bugs": {

packages/plugins/eslint-plugin-react-debug/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-react-debug",
3-
"version": "1.5.31-next.0",
3+
"version": "1.5.31-beta.0",
44
"description": "ESLint React's ESLint plugin for debugging related rules.",
55
"homepage": "https://github.com/rel1cx/eslint-react",
66
"bugs": {

packages/plugins/eslint-plugin-react-dom/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-react-dom",
3-
"version": "1.5.31-next.0",
3+
"version": "1.5.31-beta.0",
44
"description": "ESLint React's ESLint plugin for React DOM related rules.",
55
"homepage": "https://github.com/rel1cx/eslint-react",
66
"bugs": {

packages/plugins/eslint-plugin-react-hooks-extra/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-react-hooks-extra",
3-
"version": "1.5.31-next.0",
3+
"version": "1.5.31-beta.0",
44
"description": "ESLint React's ESLint plugin for React Hooks related rules.",
55
"homepage": "https://github.com/rel1cx/eslint-react",
66
"bugs": {

packages/plugins/eslint-plugin-react-naming-convention/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-react-naming-convention",
3-
"version": "1.5.31-next.0",
3+
"version": "1.5.31-beta.0",
44
"description": "ESLint React's ESLint plugin for naming convention related rules.",
55
"homepage": "https://github.com/rel1cx/eslint-react",
66
"bugs": {

packages/plugins/eslint-plugin-react-x/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-react-x",
3-
"version": "1.5.31-next.0",
3+
"version": "1.5.31-beta.0",
44
"description": "ESLint React's ESLint plugin for React related rules.",
55
"homepage": "https://github.com/rel1cx/eslint-react",
66
"bugs": {

0 commit comments

Comments
 (0)