Invisible characters like tabs, non-breaking spaces, zero-width spaces, and other whitespace characters are difficult to distinguish visually.
When these characters appear literally in regex patterns, they can lead to confusion and hard-to-debug issues.
Using explicit escape sequences makes the intent clear and the code more maintainable.
Regular spaces (U+0020) are allowed since they are commonly visible in most editors and fonts.
If you have tooling that renders invisible characters distinctively, or if your codebase intentionally uses literal invisible characters in regex patterns for specific matching requirements, you might prefer to disable this rule.
Some specialized text processing may require literal invisible character matching.