You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/src/rules/no-regex-spaces.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -13,13 +13,13 @@ related_rules:
13
13
Regular expressions can be very complex and difficult to understand, which is why it's important to keep them as simple as possible in order to avoid mistakes. One of the more error-prone things you can do with a regular expression is to use more than one space, such as:
14
14
15
15
```js
16
-
var re =/foo bar/;
16
+
constre=/foo bar/;
17
17
```
18
18
19
19
In this regular expression, it's very hard to tell how many spaces are intended to be matched. It's better to use only one space and then specify how many spaces are expected, such as:
20
20
21
21
```js
22
-
var re =/foo {3}bar/;
22
+
constre=/foo {3}bar/;
23
23
```
24
24
25
25
Now it is very clear that three spaces are expected to be matched.
@@ -35,8 +35,8 @@ Examples of **incorrect** code for this rule:
35
35
```js
36
36
/*eslint no-regex-spaces: "error"*/
37
37
38
-
var re =/foo bar/;
39
-
var re=newRegExp("foo bar");
38
+
constre=/foo bar/;
39
+
constre1=newRegExp("foo bar");
40
40
```
41
41
42
42
:::
@@ -48,8 +48,8 @@ Examples of **correct** code for this rule:
0 commit comments