tessl install tessl/npm-eslint-plugin-regexp@2.10.0ESLint plugin for finding RegExp mistakes and RegExp style guide violations.
Agent Success
Agent success rate when using this tile
82%
Improvement
Agent success rate improvement when using this tile compared to baseline
0.96x
Baseline
Agent success rate without this tile
85%
A small module that runs regex-focused linting, applies available autofixes from the regex plugin, and reports remaining suggestions.
appliedFixes. @testsuggestions collects the rule id, message, and range for each finding; when applySuggestions is enabled, apply the package-provided suggestion fixes before reporting. @test@generates
export type RuleCoverage = "recommended" | "all";
export interface LintSummary {
fixedCode: string;
appliedFixes: Array<{ ruleId: string; message: string }>;
suggestions: Array<{ ruleId: string; message: string; range: [number, number] }>;
}
export interface LintOptions {
config?: RuleCoverage;
applySuggestions?: boolean;
}
export async function lintRegexSource(source: string, options?: LintOptions): Promise<LintSummary>;
export async function lintRegexFile(inputPath: string, outputPath: string, options?: LintOptions): Promise<LintSummary>;Provides regex-focused ESLint rules with autofixes and suggestions. @satisfied-by