eslint-plugin-regexp
Version:
ESLint plugin for finding RegExp mistakes and RegExp style guide violations.
7 lines (6 loc) • 441 B
TypeScript
/// <reference types="@eslint-community/regexpp" />
import type { Quantifier } from "@eslint-community/regexpp/ast";
import type { Rule } from "eslint";
import type { CanSimplify } from "./regexp-ast";
import type { RegExpContext } from ".";
export declare function fixSimplifyQuantifier(quantifier: Quantifier, result: CanSimplify, { fixReplaceNode }: RegExpContext): [replacement: string, fix: (fixer: Rule.RuleFixer) => Rule.Fix | null];