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
unnecessary-regular-expression (RUF055) treats ) as a normal character that needs no escaping, but it is actually a metacharacter. This leads to false positives and fixes that change program behavior.
unnecessary-regular-expression
(RUF055) treats)
as a normal character that needs no escaping, but it is actually a metacharacter. This leads to false positives and fixes that change program behavior.The current behavior was inspired by this review comment, but that comment only applies to
]
and}
, not)
.The text was updated successfully, but these errors were encountered: