Rule proposal: Prefer `RegExp#exec()` over `String#match()` · Issue #283 · typescript-eslint/typescript-eslint

Those methods return identical result for regexes without the g flag. From String#match on MDN: If the regular expression does not include the g flag, returns the same result as RegExp.exec(). I wo...