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 an ESLint flat config snippet that enforces safe Unicode handling in regular expressions, ensuring engineers rely on Unicode-aware flags, code point escapes, and canonical property names. Tests lint sample files with this config; patterns marked as passing should produce no violations, while failing patterns should surface at least one Unicode-focused lint error.
u or v flag is reported; the same pattern passes when the flag is present. @test\u{...} code point escape under a Unicode-aware flag. @test\p{sc=grEek}) is reported; the canonical form (e.g., \p{Script=Greek}) passes. @test@generates
// Returns an ESLint flat config array that enforces unicode-safe regex linting.
// Configuration must enable only the rules necessary for Unicode flags, code point escapes, and property name normalization.
export function createUnicodeRegexConfig(): import('eslint').Linter.FlatConfig[];Provides regex-focused ESLint rules with Unicode-aware checks and autofixes.