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%
Create a minimal ESLint setup that enforces correct JavaScript RegExp API usage for boolean checks, detailed matches, and safe replacements. Provide fixtures and a script so linting clearly distinguishes good usage from bad usage.
@generates
src/examples/*.js.src/examples/bad.js with one instance of each violation: boolean check via string matching, extracting details via string matching, unescaped $ in a replacement, and an unnecessary default replacement token.src/examples/good.js with corrected versions of those four cases that lint cleanly.test that runs ESLint against the fixtures and fails on violations in bad.js while good.js passes.Enforces regular expression best practices and safe usage in linted code.
Provides the linting engine used to apply the regular expression rules.