UNPKG

eslint-plugin-react-x

Version:

A set of composable ESLint rules for libraries and frameworks that use React as a UI runtime.

8 lines 491 B
import { ESLint, Linter } from "eslint"; //#region src/index.d.ts type ConfigName = "disable-experimental" | "disable-type-checked" | "disable-conflict-eslint-plugin-react" | "disable-conflict-eslint-plugin-react-hooks" | "recommended" | "recommended-type-checked" | "recommended-typescript" | "strict" | "strict-type-checked" | "strict-typescript"; declare const finalPlugin: ESLint.Plugin & { configs: Record<ConfigName, Linter.Config>; }; //#endregion export { finalPlugin as default };