Skip to content
← Back to rules

unicorn/prefer-string-raw Style

🛠️ An auto-fix is available for this rule.

What it does ​

Prefers use of String.raw to avoid escaping \.

Why is this bad? ​

Excessive backslashes can make string values less readable which can be avoided by using String.raw.

Examples ​

Examples of incorrect code for this rule:

javascript
const file = "C:\\windows\\style\\path\\to\\file.js";
const regexp = new RegExp("foo\\.bar");

Examples of correct code for this rule:

javascript
const file = String.raw`C:\windows\style\path\to\file.js`;
const regexp = new RegExp(String.raw`foo\.bar`);

How to use ​

To enable this rule using the config file or in the CLI, you can use:

json
{
  "rules": {
    "unicorn/prefer-string-raw": "error"
  }
}
ts
import { defineConfig } from "oxlint";

export default defineConfig({
  rules: {
    "unicorn/prefer-string-raw": "error",
  },
});
bash
oxlint --deny unicorn/prefer-string-raw

Version ​

This rule was added in v0.12.0.

References ​