Skip to content

Commit 36731d2

Browse files
committed
release: 1.38.1-next.0
1 parent 9462a4d commit 36731d2

File tree

24 files changed

+87
-22
lines changed

24 files changed

+87
-22
lines changed

VERSION

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

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.38.0",
3+
"version": "1.38.1-next.0",
44
"private": true,
55
"description": "Monorepo for eslint-plugin-react-[x, dom, web-api, hooks-extra, naming-convention].",
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.38.0",
3+
"version": "1.38.1-next.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.38.0",
3+
"version": "1.38.1-next.0",
44
"description": "ESLint React's ESLint plugin for debugging related rules.",
55
"keywords": [
66
"react",

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.38.0",
3+
"version": "1.38.1-next.0",
44
"description": "ESLint React's ESLint plugin for React DOM related rules.",
55
"keywords": [
66
"react",

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.38.0",
3+
"version": "1.38.1-next.0",
44
"description": "ESLint React's ESLint plugin for React Hooks related rules.",
55
"keywords": [
66
"react",

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.38.0",
3+
"version": "1.38.1-next.0",
44
"description": "ESLint React's ESLint plugin for naming convention related rules.",
55
"keywords": [
66
"react",

packages/plugins/eslint-plugin-react-naming-convention/src/rules/component-name.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import type { JSONSchema4 } from "@typescript-eslint/utils/json-schema";
44
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
55
import * as AST from "@eslint-react/ast";
66
import { useComponentCollector, useComponentCollectorLegacy } from "@eslint-react/core";
7-
import { RE_CONSTANT_CASE, RE_PASCAL_CASE } from "@eslint-react/kit";
7+
import { RE_CONSTANT_CASE, RE_PASCAL_CASE, toRegExp } from "@eslint-react/kit";
88

9-
import { createRule, toRegExp } from "../utils";
9+
import { createRule } from "../utils";
1010

1111
type Case = "CONSTANT_CASE" | "PascalCase";
1212

packages/plugins/eslint-plugin-react-naming-convention/src/rules/filename.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
import type { _ } from "@eslint-react/eff";
2-
32
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
43
import type { JSONSchema4 } from "@typescript-eslint/utils/json-schema";
54
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
65
import path from "node:path";
7-
import { RE_CAMEL_CASE, RE_KEBAB_CASE, RE_PASCAL_CASE, RE_SNAKE_CASE } from "@eslint-react/kit";
6+
import { RE_CAMEL_CASE, RE_KEBAB_CASE, RE_PASCAL_CASE, RE_SNAKE_CASE, toRegExp } from "@eslint-react/kit";
87
import { camelCase, kebabCase, pascalCase, snakeCase } from "string-ts";
98
import { match } from "ts-pattern";
109

11-
import { createRule, toRegExp } from "../utils";
10+
import { createRule } from "../utils";
1211

1312
export const RULE_NAME = "filename";
1413

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
export * from "./create-rule";
2-
export * from "./regexp";

0 commit comments

Comments
 (0)