eslint-plugin-regexp
Version:
ESLint plugin for finding RegExp mistakes and RegExp style guide violations.
16 lines (15 loc) • 514 B
TypeScript
import * as all from "./configs/all";
import * as flatAll from "./configs/flat/all";
import * as flatRecommended from "./configs/flat/recommended";
import * as recommended from "./configs/recommended";
import type { RuleModule } from "./types";
export * as meta from "./meta";
export declare const configs: {
recommended: typeof recommended;
all: typeof all;
"flat/all": typeof flatAll;
"flat/recommended": typeof flatRecommended;
};
export declare const rules: {
[key: string]: RuleModule;
};