quick-lint-js

Find bugs in JavaScript programs.

E0035: RegExp literal flags cannot contain Unicode escapes

Regular expression literals can contain flags. These flags must not be escaped using a Unicode escape sequence:

const isContentLength =
  /content-length/\u{69}.test(headerName);

To fix this error, stop being clever; write the flag letter directly:

const isContentLength =
  /content-length/i.test(headerName);

Introduced in quick-lint-js version 0.2.0.

Documentation for other errors