When a character class contains both upper and lower case versions of the same letters, the pattern can be simplified by using the i (ignore case) flag.
This makes the regex shorter and clearer by eliminating redundant character class entries.
If you need explicit control over case matching in your regex patterns, or if your codebase intentionally avoids the i flag for performance or compatibility reasons, you might prefer to disable this rule.
Some legacy JavaScript environments may have inconsistent behavior with the i flag for non-ASCII characters.