UNPKG

667 BTypeScriptView Raw
1/**
2 * Step 1) Entry point of plugin. Exports itself for eslint to use
3 * @author Amila Welihinda
4 */
5import type { Linter } from "eslint";
6declare const configs: {
7 "flat/recommended": Linter.FlatConfig;
8 recommended: Linter.Config;
9};
10declare const _default: {
11 /**
12 * @deprecated Use `.configs` instead. This will be removed in the next major release.
13 */
14 config: {
15 "flat/recommended": Linter.FlatConfig;
16 recommended: Linter.Config;
17 };
18 meta: {
19 name: string;
20 version: string;
21 };
22 configs: typeof configs;
23 rules: {
24 compat: import("eslint").Rule.RuleModule;
25 };
26};
27export = _default;