@ospm/eslint-plugin-react-signals-hooks
Version:
ESLint plugin for React Signals hooks - enforces best practices, performance optimizations, and integration patterns for @preact/signals-react usage in React projects
16 lines • 636 B
TypeScript
/** biome-ignore-all assist/source/organizeImports:off */
import { ESLintUtils } from "@typescript-eslint/utils";
import type { PerformanceBudget } from "./utils/types.js";
type MessageIds = "preferForOverMap" | "suggestForComponent" | "addForImport";
type Serenity = {
[key in MessageIds]?: "error" | "warn" | "off";
};
type Option = {
performance?: PerformanceBudget;
severity?: Serenity;
suffix?: string;
};
type Options = [Option?];
export declare const preferForOverMapRule: ESLintUtils.RuleModule<MessageIds, Options, unknown, ESLintUtils.RuleListener>;
export {};
//# sourceMappingURL=prefer-for-over-map.d.ts.map