UNPKG

eslint-plugin-graphile-export

Version:

ESLint plugin to help ensure your schema is exportable by graphile-export

39 lines 1.2 kB
import type { ESLint, Rule } from "eslint"; export declare const configs: { recommended: { name: string; plugins: { readonly "graphile-export": ESLint.Plugin; }; rules: { "graphile-export/exhaustive-deps": ["error", { disableAutofix: boolean; sortExports: boolean; }]; "graphile-export/export-methods": ["error", { disableAutofix: boolean; methods: string[]; }]; "graphile-export/export-instances": ["error", { disableAutofix: boolean; }]; "graphile-export/export-subclasses": ["error", { disableAutofix: boolean; }]; "graphile-export/no-nested": ["error", { disableAutofix: boolean; }]; }; }; }; export declare const meta: { name: string; }; export declare const rules: { "exhaustive-deps": Rule.RuleModule; "export-methods": Rule.RuleModule; "export-instances": Rule.RuleModule; "export-subclasses": Rule.RuleModule; "no-nested": Rule.RuleModule; }; //# sourceMappingURL=index.d.ts.map