id: no-throw-string
valid:
  - 'throw new Error("x")'
  - 'throw err'
  - 'throw "msg with " + varName'
  - 'throw `template`'
invalid:
  - 'throw "oops"'
  - 'throw "literal"'
  - 'throw "another"'
