Skip to content
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ Before submitting your contribution though, please make sure to take a moment an
- `packages/utilities/ast`: TSESTree AST utility module.
- `packages/utilities/var`: TSESTree AST utility module for static analysis of variables.
- `packages/utilities/jsx`: TSESTree AST utility module for static analysis of JSX.
- `packages/utilities/kit`: ESLint React's Plugin Kit for building plugins and rules.

##### Core & Shared Modules

Expand Down
4 changes: 1 addition & 3 deletions .pkgs/eslint-plugin-local/dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import * as _typescript_eslint_utils_ts_eslint from '@typescript-eslint/utils/ts-eslint';

type MessageID = "unexpectedComparison" | "useLooseComparisonSuggestion";

declare const _default: {
readonly meta: {
readonly name: string;
Expand All @@ -10,7 +8,7 @@ declare const _default: {
readonly rules: {
readonly "avoid-multiline-template-expression": _typescript_eslint_utils_ts_eslint.RuleModule<"avoidMultilineTemplateExpression", [], unknown, _typescript_eslint_utils_ts_eslint.RuleListener>;
readonly "no-shadow-underscore": _typescript_eslint_utils_ts_eslint.RuleModule<"noShadowUnderscore", [], unknown, _typescript_eslint_utils_ts_eslint.RuleListener>;
readonly "prefer-eqeq-nullish-comparison": _typescript_eslint_utils_ts_eslint.RuleModule<MessageID, [], unknown, _typescript_eslint_utils_ts_eslint.RuleListener>;
readonly "prefer-eqeq-nullish-comparison": _typescript_eslint_utils_ts_eslint.RuleModule<"unexpectedComparison" | "useLooseComparisonSuggestion", [], unknown, _typescript_eslint_utils_ts_eslint.RuleListener>;
};
};

Expand Down
1 change: 1 addition & 0 deletions .pkgs/eslint-plugin-local/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"dependencies": {
"@eslint-react/ast": "workspace:*",
"@eslint-react/eff": "workspace:*",
"@eslint-react/kit": "workspace:*",
"@eslint-react/shared": "workspace:*",
"@eslint-react/var": "workspace:*",
"@eslint/js": "^9.23.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as AST from "@eslint-react/ast";
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
import type { CamelCase } from "string-ts";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import type { TSESTree } from "@typescript-eslint/types";
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
import type { CamelCase } from "string-ts";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Ported from: https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin-internal/src/rules/eqeq-nullish.ts

import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import { AST_NODE_TYPES as T } from "@typescript-eslint/utils";
import { nullThrows, NullThrowsReasons, type RuleListener } from "@typescript-eslint/utils/eslint-utils";

Expand Down
1 change: 1 addition & 0 deletions apps/website/content/docs/faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Currently, it includes the following:
- `packages/utilities/ast`: TSESTree AST utility module.
- `packages/utilities/var`: TSESTree AST utility module for static analysis of variables.
- `packages/utilities/jsx`: TSESTree AST utility module for static analysis of JSX.
- `packages/utilities/kit`: ESLint React's Plugin Kit for building plugins and rules.
- **Core & Shared Modules**
- `packages/core`: Utility module for static analysis of React core APIs and patterns.
- `packages/shared`: Shared constants, types and functions.
Expand Down
1 change: 1 addition & 0 deletions apps/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
},
"devDependencies": {
"@eslint-react/eslint-plugin": "workspace:*",
"@eslint-react/kit": "workspace:*",
"@eslint-react/shared": "workspace:*",
"@eslint/js": "^9.23.0",
"@eslint/markdown": "^6.3.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
},
"devDependencies": {
"@eslint-react/eslint-plugin": "workspace:*",
"@eslint-react/kit": "workspace:*",
"@eslint-react/shared": "workspace:*",
"@eslint/config-inspector": "^1.0.2",
"@eslint/js": "^9.23.0",
Expand Down
1 change: 1 addition & 0 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"@eslint-react/ast": "workspace:*",
"@eslint-react/eff": "workspace:*",
"@eslint-react/jsx": "workspace:*",
"@eslint-react/kit": "workspace:*",
"@eslint-react/shared": "workspace:*",
"@eslint-react/var": "workspace:*",
"@typescript-eslint/scope-manager": "^8.27.0",
Expand Down
3 changes: 2 additions & 1 deletion packages/core/src/component/component-collector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
import * as AST from "@eslint-react/ast";
import { _ } from "@eslint-react/eff";
import * as JSX from "@eslint-react/jsx";
import { getId, type RuleContext } from "@eslint-react/shared";
import type { RuleContext } from "@eslint-react/kit";
import { getId } from "@eslint-react/shared";
import type { TSESTree } from "@typescript-eslint/types";
import { AST_NODE_TYPES as T } from "@typescript-eslint/types";
import type { ESLintUtils } from "@typescript-eslint/utils";
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/component/component-id.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as AST from "@eslint-react/ast";
import { _ } from "@eslint-react/eff";
import type { RuleContext } from "@eslint-react/shared";
import type { RuleContext } from "@eslint-react/kit";
import type { TSESTree } from "@typescript-eslint/types";
import { AST_NODE_TYPES as T } from "@typescript-eslint/types";

Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/component/component-name.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type * as AST from "@eslint-react/ast";
import { _ } from "@eslint-react/eff";
import type { RuleContext } from "@eslint-react/shared";
import type { RuleContext } from "@eslint-react/kit";
import type { TSESTree } from "@typescript-eslint/types";

import { getFunctionComponentIdentifier } from "./component-id";
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/component/component-render-prop.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as AST from "@eslint-react/ast";
import * as JSX from "@eslint-react/jsx";
import type { RuleContext } from "@eslint-react/shared";
import type { RuleContext } from "@eslint-react/kit";
import type { TSESTree } from "@typescript-eslint/types";
import { AST_NODE_TYPES as T } from "@typescript-eslint/types";

Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/component/hierarchy.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable jsdoc/require-param */
import * as AST from "@eslint-react/ast";
import { type RuleContext } from "@eslint-react/shared";
import { type RuleContext } from "@eslint-react/kit";
import type { TSESTree } from "@typescript-eslint/types";
import { AST_NODE_TYPES as T } from "@typescript-eslint/types";

Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/hook/is.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as AST from "@eslint-react/ast";
import { _, constFalse, flip } from "@eslint-react/eff";
import type { RuleContext } from "@eslint-react/shared";
import type { RuleContext } from "@eslint-react/kit";
import { unsafeDecodeSettings } from "@eslint-react/shared";
import type { TSESTree } from "@typescript-eslint/types";
import { AST_NODE_TYPES as T } from "@typescript-eslint/types";
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/utils/is-from-react.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable jsdoc/require-param */
import { type _, dual } from "@eslint-react/eff";
import type { RuleContext } from "@eslint-react/shared";
import type { RuleContext } from "@eslint-react/kit";
import { DEFAULT_ESLINT_REACT_SETTINGS, unsafeDecodeSettings } from "@eslint-react/shared";
import type { Scope } from "@typescript-eslint/scope-manager";
import type { TSESTree } from "@typescript-eslint/types";
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/utils/is-instance-id-equal.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable jsdoc/require-param */
import * as AST from "@eslint-react/ast";
import type { RuleContext } from "@eslint-react/shared";
import type { RuleContext } from "@eslint-react/kit";
import * as VAR from "@eslint-react/var";
import type { TSESTree } from "@typescript-eslint/types";

Expand Down
1 change: 1 addition & 0 deletions packages/plugins/eslint-plugin-react-debug/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
"@eslint-react/core": "workspace:*",
"@eslint-react/eff": "workspace:*",
"@eslint-react/jsx": "workspace:*",
"@eslint-react/kit": "workspace:*",
"@eslint-react/shared": "workspace:*",
"@eslint-react/var": "workspace:*",
"@typescript-eslint/scope-manager": "^8.27.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { RulePreset } from "@eslint-react/shared";
import type { RulePreset } from "@eslint-react/kit";
import { DEFAULT_ESLINT_REACT_SETTINGS } from "@eslint-react/shared";

export const name = "react-debug/all";
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/eslint-plugin-react-debug/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { RulePreset } from "@eslint-react/shared";
import type { RulePreset } from "@eslint-react/kit";

import * as allConfig from "./configs/all";
import { plugin } from "./plugin";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useComponentCollectorLegacy } from "@eslint-react/core";
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
import type { CamelCase } from "string-ts";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { DEFAULT_COMPONENT_HINT, ERComponentFlag, useComponentCollector } from "@eslint-react/core";
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
import type { CamelCase } from "string-ts";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useHookCollector } from "@eslint-react/core";
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
import type { CamelCase } from "string-ts";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { isInitializedFromReact } from "@eslint-react/core";
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import { getSettingsFromContext } from "@eslint-react/shared";
import type { Scope } from "@typescript-eslint/scope-manager";
import type { TSESTree } from "@typescript-eslint/utils";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { createRuleForPlugin } from "@eslint-react/shared";
import { getDocsUrl } from "@eslint-react/shared";
import { ESLintUtils } from "@typescript-eslint/utils";

export const createRule = createRuleForPlugin("debug");
export const createRule = ESLintUtils.RuleCreator(getDocsUrl("debug"));
1 change: 1 addition & 0 deletions packages/plugins/eslint-plugin-react-dom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
"@eslint-react/core": "workspace:*",
"@eslint-react/eff": "workspace:*",
"@eslint-react/jsx": "workspace:*",
"@eslint-react/kit": "workspace:*",
"@eslint-react/shared": "workspace:*",
"@eslint-react/var": "workspace:*",
"@typescript-eslint/scope-manager": "^8.27.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { RulePreset } from "@eslint-react/shared";
import type { RulePreset } from "@eslint-react/kit";
import { DEFAULT_ESLINT_REACT_SETTINGS } from "@eslint-react/shared";

export const name = "react-dom/recommended";
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/eslint-plugin-react-dom/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { RulePreset } from "@eslint-react/shared";
import type { RulePreset } from "@eslint-react/kit";

import * as recommendedConfig from "./configs/recommended";
import { plugin } from "./plugin";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as JSX from "@eslint-react/jsx";
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import type { TSESTree } from "@typescript-eslint/types";
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
import type { CamelCase } from "string-ts";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as JSX from "@eslint-react/jsx";
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
import type { CamelCase } from "string-ts";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import { AST_NODE_TYPES as T } from "@typescript-eslint/types";
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
import type { CamelCase } from "string-ts";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import { AST_NODE_TYPES as T } from "@typescript-eslint/types";
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
import type { CamelCase } from "string-ts";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { RuleFeature } from "@eslint-react/shared";
import type { RuleFeature } from "@eslint-react/kit";
import { getSettingsFromContext } from "@eslint-react/shared";
import type { TSESTree } from "@typescript-eslint/types";
import { AST_NODE_TYPES as T } from "@typescript-eslint/types";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as JSX from "@eslint-react/jsx";
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import { getSettingsFromContext } from "@eslint-react/shared";
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
import type { CamelCase } from "string-ts";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as JSX from "@eslint-react/jsx";
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import { getSettingsFromContext } from "@eslint-react/shared";
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
import type { CamelCase } from "string-ts";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as JSX from "@eslint-react/jsx";
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
import type { CamelCase } from "string-ts";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as AST from "@eslint-react/ast";
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import { AST_NODE_TYPES as T } from "@typescript-eslint/types";
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
import type { CamelCase } from "string-ts";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { RuleFeature } from "@eslint-react/shared";
import type { RuleFeature } from "@eslint-react/kit";
import { getSettingsFromContext } from "@eslint-react/shared";
import type { TSESTree } from "@typescript-eslint/types";
import { AST_NODE_TYPES as T } from "@typescript-eslint/types";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as JSX from "@eslint-react/jsx";
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import { RE_JAVASCRIPT_PROTOCOL } from "@eslint-react/shared";
import { AST_NODE_TYPES as T } from "@typescript-eslint/types";
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
import { getSettingsFromContext } from "@eslint-react/shared";
import { createRule } from "../utils";
import { compare } from "compare-versions";
import { createReport } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import { createReport } from "@eslint-react/kit";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";

// ------------------------------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as JSX from "@eslint-react/jsx";
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import { getSettingsFromContext } from "@eslint-react/shared";
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
import type { CamelCase } from "string-ts";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { _ } from "@eslint-react/eff";
import * as JSX from "@eslint-react/jsx";
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import { getSettingsFromContext } from "@eslint-react/shared";
import type { TSESTree } from "@typescript-eslint/types";
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { RuleFeature } from "@eslint-react/shared";
import type { RuleFeature } from "@eslint-react/kit";
import { getSettingsFromContext } from "@eslint-react/shared";
import type { TSESTree } from "@typescript-eslint/types";
import { AST_NODE_TYPES as T } from "@typescript-eslint/types";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as JSX from "@eslint-react/jsx";
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
import type { CamelCase } from "string-ts";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { createRuleForPlugin } from "@eslint-react/shared";
import { getDocsUrl } from "@eslint-react/shared";
import { ESLintUtils } from "@typescript-eslint/utils";

export const createRule = createRuleForPlugin("dom");
export const createRule = ESLintUtils.RuleCreator(getDocsUrl("dom"));
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import * as JSX from "@eslint-react/jsx";
import type { CustomComponentNormalized, RuleContext } from "@eslint-react/shared";
import type { RuleContext } from "@eslint-react/kit";
import type { CustomComponentNormalized } from "@eslint-react/shared";
import type { TSESTree } from "@typescript-eslint/types";

export function getElementTypeOnJsxAndDom(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"@eslint-react/core": "workspace:*",
"@eslint-react/eff": "workspace:*",
"@eslint-react/jsx": "workspace:*",
"@eslint-react/kit": "workspace:*",
"@eslint-react/shared": "workspace:*",
"@eslint-react/var": "workspace:*",
"@typescript-eslint/scope-manager": "^8.27.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { RulePreset } from "@eslint-react/shared";
import type { RulePreset } from "@eslint-react/kit";

export const name = "react-hooks-extra/recommended";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { RulePreset } from "@eslint-react/shared";
import type { RulePreset } from "@eslint-react/kit";

import * as recommendedConfig from "./configs/recommended";
import { plugin } from "./plugin";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
import type { CamelCase } from "string-ts";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import type { RuleListener } from "@typescript-eslint/utils/ts-eslint";
import type { CamelCase } from "string-ts";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as AST from "@eslint-react/ast";
import { isReactHookCall, isReactHookCallWithNameLoose, isUseCallbackCall } from "@eslint-react/core";
import { _, identity } from "@eslint-react/eff";
import type { RuleContext, RuleFeature } from "@eslint-react/shared";
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
import { getSettingsFromContext } from "@eslint-react/shared";
import * as VAR from "@eslint-react/var";
import { AST_NODE_TYPES as T } from "@typescript-eslint/types";
Expand Down
Loading
Loading