Rule proposal: Prefer `RegExp#exec` over `String#match` · Issue #3477 · eslint/eslint

Problem They 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 wou...