Skip to content

Commit f2e5b5b

Browse files
committed
release: 1.38.0-beta.0
fix: update import paths release: 1.38.0-next.1 release: 1.38.0-beta.1 docs: rebuild docs fix: update import paths release: 1.38.0-next.2 release: 1.38.0-beta.2 fix: update import paths again release: 1.38.0-next.3 release: 1.38.0-beta.3
1 parent 612e8a8 commit f2e5b5b

File tree

864 files changed

+169141
-31
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

864 files changed

+169141
-31
lines changed

.pkgs/eslint-plugin-local/dist/index.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import * as _typescript_eslint_utils_ts_eslint from '@typescript-eslint/utils/ts-eslint';
22

3+
type MessageID = "unexpectedComparison" | "useLooseComparisonSuggestion";
4+
35
declare const _default: {
46
readonly meta: {
57
readonly name: string;
@@ -8,7 +10,7 @@ declare const _default: {
810
readonly rules: {
911
readonly "avoid-multiline-template-expression": _typescript_eslint_utils_ts_eslint.RuleModule<"avoidMultilineTemplateExpression", [], unknown, _typescript_eslint_utils_ts_eslint.RuleListener>;
1012
readonly "no-shadow-underscore": _typescript_eslint_utils_ts_eslint.RuleModule<"noShadowUnderscore", [], unknown, _typescript_eslint_utils_ts_eslint.RuleListener>;
11-
readonly "prefer-eqeq-nullish-comparison": _typescript_eslint_utils_ts_eslint.RuleModule<"unexpectedComparison" | "useLooseComparisonSuggestion", [], unknown, _typescript_eslint_utils_ts_eslint.RuleListener>;
13+
readonly "prefer-eqeq-nullish-comparison": _typescript_eslint_utils_ts_eslint.RuleModule<MessageID, [], unknown, _typescript_eslint_utils_ts_eslint.RuleListener>;
1214
};
1315
};
1416

VERSION

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

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

packages/plugins/eslint-plugin-react-dom/src/rules/no-hydrate.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
import type { RuleFeature } from "@eslint-react/kit";
1+
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
22
import { getSettingsFromContext } from "@eslint-react/shared";
33
import type { TSESTree } from "@typescript-eslint/types";
44
import { AST_NODE_TYPES as T } from "@typescript-eslint/types";
55
import type { RuleFixer, RuleListener } from "@typescript-eslint/utils/ts-eslint";
66
import { compare } from "compare-versions";
77
import type { CamelCase } from "string-ts";
88

9-
import type { RuleContext } from "../../../../shared/src/types";
109
import { createRule } from "../utils";
1110

1211
export const RULE_NAME = "no-hydrate";

packages/plugins/eslint-plugin-react-dom/src/rules/no-render.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
import type { RuleFeature } from "@eslint-react/kit";
1+
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
22
import { getSettingsFromContext } from "@eslint-react/shared";
33
import type { TSESTree } from "@typescript-eslint/types";
44
import { AST_NODE_TYPES as T } from "@typescript-eslint/types";
55
import type { RuleFixer, RuleListener } from "@typescript-eslint/utils/ts-eslint";
66
import { compare } from "compare-versions";
77
import type { CamelCase } from "string-ts";
88

9-
import type { RuleContext } from "../../../../shared/src/types";
109
import { createRule } from "../utils";
1110

1211
export const RULE_NAME = "no-render";

packages/plugins/eslint-plugin-react-dom/src/rules/no-script-url.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as JSX from "@eslint-react/jsx";
22
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
3-
import { RE_JAVASCRIPT_PROTOCOL } from "@eslint-react/shared";
3+
import { RE_JAVASCRIPT_PROTOCOL } from "@eslint-react/kit";
44
import { AST_NODE_TYPES as T } from "@typescript-eslint/types";
55
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
66
import type { CamelCase } from "string-ts";

packages/plugins/eslint-plugin-react-dom/src/rules/no-use-form-state.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
import type { RuleFeature } from "@eslint-react/kit";
1+
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
22
import { getSettingsFromContext } from "@eslint-react/shared";
33
import type { TSESTree } from "@typescript-eslint/types";
44
import { AST_NODE_TYPES as T } from "@typescript-eslint/types";
55
import type { RuleFixer, RuleListener } from "@typescript-eslint/utils/ts-eslint";
66
import { compare } from "compare-versions";
77
import type { CamelCase } from "string-ts";
88

9-
import type { RuleContext } from "../../../../shared/src/types";
109
import { createRule } from "../utils";
1110

1211
export const RULE_NAME = "no-use-form-state";

0 commit comments

Comments
 (0)