@eslint-react/eslint-plugin
Version:
A unified plugin that combines all individual plugins from the eslint-react monorepo into one.
13 lines (12 loc) • 686 B
TypeScript
import { CompatibleConfig, CompatiblePlugin } from "@eslint-react/shared";
//#region src/index.d.ts
type ConfigName = "all" | "disable-conflict-eslint-plugin-react" | "disable-dom" | "disable-type-checked" | "disable-web-api" | "dom" | "no-deprecated" | "off" | "recommended" | "recommended-type-checked" | "recommended-typescript" | "strict" | "strict-type-checked" | "strict-typescript" | "web-api" | "x";
declare const plugin: CompatiblePlugin & {
/**
* For more information about each preset, please refer to the documentation.
* @see https://eslint-react.xyz/docs/presets
*/
configs: Record<ConfigName, CompatibleConfig>;
};
//#endregion
export { plugin as default };