Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 604 Bytes

wrap-regex.md

File metadata and controls

35 lines (24 loc) · 604 Bytes

wrap-regex

Requires regex literals to be wrapped.

When a regular expression is used in certain situations, it can end up looking like a division operator. For example:

function a() {
    return /foo/.test("bar");
}

Rule Details

This is used to disambiguate the slash operator and facilitates more readable code.

Example of incorrect code for this rule:

/*eslint wrap-regex: "error"*/

function a() {
    return /foo/.test("bar");
}

Example of correct code for this rule:

/*eslint wrap-regex: "error"*/

function a() {
    return (/foo/).test("bar");
}