**Information:** - ESLint version: 8.57.0 - `eslint-plugin-regexp` version: 2.6.0 **Description** With this rule elabled: ```js "regexp/letter-case" : "error" ``` The following code: ```js const REG = /\u036F/; ``` is reported as error: > error '\u036F' is not in lowercase regexp/letter-case but should be automatically fixed to: ```diff - const REG = /\u036F/; + const REG = /\u036f/; ``` Same problem with the `u` flag `/\u036F/u` Note that [the rule doc](https://ota-meshi.github.io/eslint-plugin-regexp/rules/letter-case.html) specifies that: > 🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).