Avoid equal signs at the beginning of regular expressions

Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Metadata

ID: javascript-code-style/no-div-regex

Language: JavaScript

Severity: Notice

Category: Error Prone

Description

At the start of a regular expression literal, the characters /= can be mistaken for a division assignment operator.

Non-Compliant Code Examples

var f = function() { return /=foo/; };

Compliant Code Examples

var f = function() { return /foo/ig.test('bar'); };
var f = function() { return /\\=foo/; };
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis