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
When defining e.g. a rule: "angular/controller-name": [2, '/^Prefix[A-Z][a-zA-Z0-9]*Suffix$/']
A controller name such as 'PrefixBananaSuffixasdf' does not produce errors.
This seems to be caused by a bug in utils.convertStringToRegex function, that removes the last character from the regexp string, in this case the dollar sign.