Skip to content

Commit 78e70b8

Browse files
committed
release: 2.0.0-next.153
1 parent 29798df commit 78e70b8

File tree

20 files changed

+21
-21
lines changed

20 files changed

+21
-21
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0-beta.52
1+
2.0.0-next.153

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

packages/plugins/eslint-plugin-react-hooks-extra/src/rules-removed/no-unnecessary-use-callback.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ export function create(context: RuleContext<MessageID, []>): RuleListener {
122122
if (arg0Node == null) return;
123123

124124
const arg0NodeScope = context.sourceCode.getScope(arg0Node);
125-
const arg0NodeReferences = VAR.getChidScopes(arg0NodeScope).flatMap((x) => x.references);
125+
const arg0NodeReferences = VAR.getChildScopes(arg0NodeScope).flatMap((x) => x.references);
126126
const isReferencedToComponentScope = arg0NodeReferences.some((x) => x.resolved?.scope.block === component);
127127

128128
if (!isReferencedToComponentScope) {

packages/plugins/eslint-plugin-react-hooks-extra/src/rules-removed/no-unnecessary-use-memo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ export function create(context: RuleContext<MessageID, []>): RuleListener {
127127
if (arg0Node == null) return;
128128

129129
const arg0NodeScope = context.sourceCode.getScope(arg0Node);
130-
const arg0NodeReferences = VAR.getChidScopes(arg0NodeScope).flatMap((x) => x.references);
130+
const arg0NodeReferences = VAR.getChildScopes(arg0NodeScope).flatMap((x) => x.references);
131131
const isReferencedToComponentScope = arg0NodeReferences.some((x) => x.resolved?.scope.block === component);
132132

133133
if (!isReferencedToComponentScope) {

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

packages/plugins/eslint-plugin-react-web-api/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-web-api",
3-
"version": "2.0.0-beta.52",
3+
"version": "2.0.0-next.153",
44
"description": "ESLint React's ESLint plugin for interacting with Web APIs",
55
"keywords": [
66
"react",

0 commit comments

Comments
 (0)