eslint/no-div-regex Restriction
What it does
Disallow equal signs explicitly at the beginning of regular expressions.
Why is this bad?
Characters /= at the beginning of a regular expression literal can be confused with a division assignment operator.
Example
javascript
function bar() {
return /=foo/;
}