eslint/no-multi-str Style 
What it does 
Disallow multiline strings.
Why is this bad? 
Some consider this to be a bad practice as it was an undocumented feature of JavaScript that was only formalized later.
Examples 
Examples of incorrect code for this rule:
javascript
var x = "Line 1 \
 Line 2";How to use 
To enable this rule in the CLI or using the config file, you can use:
bash
oxlint --deny no-multi-strjson
{
  "rules": {
    "no-multi-str": "error"
  }
}