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
Tried adding several regex patterns like (?=.[a-z])(?=.[A-Z])(?=.[0-9])(?=.[!@\$%\^&\*])(?=.{8,}) (?=.\d)(?=.[a-z])(?=.[A-Z])(?=.[@$%&*]).{8,} etc but getting fatal error
Found that issue is caused when used ? after (
Can someone help?
The text was updated successfully, but these errors were encountered:
I don't maintain this project, but I have worked with it quite a lot.
Both git_grep() and regular_grep() functions in git-secrets script pass the -E flag to use "extended regular expressions". It looks like ERE doesn't support lookaround (what you're referring to as "preceding regular expressions". Have a look at this table (you can pick regex flavors by dropdown) to see for yourself. https://www.regular-expressions.info/refadv.html
Tried adding several regex patterns like (?=.[a-z])(?=.[A-Z])(?=.[0-9])(?=.[!@\$%\^&\*])(?=.{8,})
(?=.\d)(?=.[a-z])(?=.[A-Z])(?=.[@$%&*]).{8,} etc but getting fatal error
Found that issue is caused when used ? after (
Can someone help?
The text was updated successfully, but these errors were encountered: