You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If an unescaped dot (.) is found in a regex pattern, and it can be reasonably determined that the dot is still part of a valid domain or is followed by a valid TLD, a warning should be displayed, suggesting that the dot should be escaped.
If an unescaped dot (
.
) is found in a regex pattern, and it can be reasonably determined that the dot is still part of a valid domain or is followed by a valid TLD, a warning should be displayed, suggesting that the dot should be escaped.For example, the following rules:
Should be rewritten as:
This is because an unescaped dot (
.
) in a regex pattern represents any character, while an escaped dot (\.
) explicitly represents a literal dot (.
).Can be autofixed.
The text was updated successfully, but these errors were encountered: