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-empty-pattern.md
+15-15
Original file line number
Diff line number
Diff line change
@@ -9,21 +9,21 @@ When using destructuring, it's possible to create a pattern that has no effect.
9
9
10
10
```js
11
11
// doesn't create any variables
12
-
var {a: {}} = foo;
12
+
const {a: {}} = foo;
13
13
```
14
14
15
15
In this code, no new variables are created because `a` is just a location helper while the `{}` is expected to contain the variables to create, such as:
16
16
17
17
```js
18
18
// creates variable b
19
-
var {a: { b }} = foo;
19
+
const {a: { b }} = foo;
20
20
```
21
21
22
22
In many cases, the empty object pattern is a mistake where the author intended to use a default value instead, such as:
23
23
24
24
```js
25
25
// creates variable a
26
-
var {a = {}} = foo;
26
+
const {a= {}} = foo;
27
27
```
28
28
29
29
The difference between these two patterns is subtle, especially because the problematic empty pattern looks just like an object literal.
@@ -39,10 +39,10 @@ Examples of **incorrect** code for this rule:
39
39
```js
40
40
/*eslint no-empty-pattern: "error"*/
41
41
42
-
var {} = foo;
43
-
var [] = foo;
44
-
var {a: {}} = foo;
45
-
var {a: []} = foo;
42
+
const {} = foo;
43
+
const [] = foo;
44
+
const {a: {}} = foo;
45
+
const {a: []} = foo;
46
46
functionfoo({}) {}
47
47
functionbar([]) {}
48
48
functionbaz({a: {}}) {}
@@ -58,8 +58,8 @@ Examples of **correct** code for this rule:
58
58
```js
59
59
/*eslint no-empty-pattern: "error"*/
60
60
61
-
var {a = {}} = foo;
62
-
var {a= []} = foo;
61
+
const {a= {}} = foo;
62
+
const {b= []} = foo;
63
63
functionfoo({a = {}}) {}
64
64
functionbar({a = []}) {}
65
65
```
@@ -84,10 +84,10 @@ Examples of **incorrect** code for this rule with the `{"allowObjectPatternsAsPa
0 commit comments