no-invalid-regexp
NOTE: this rule is part of the 
recommended rule set.Enable full set in 
deno.json:{
  "lint": {
    "tags": ["recommended"]
  }
}Enable full set using the Deno CLI:
deno lint --tags=recommended
Disallows specifying invalid regular expressions in RegExp constructors.
Specifying an invalid regular expression literal will result in a SyntaxError at compile time, however specifying an invalid regular expression string in the RegExp constructor will only be discovered at runtime.
Invalid:
const invalidRegExp = new RegExp(")");
Valid:
const goodRegExp = new RegExp(".");