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-unused-expressions.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -15,11 +15,11 @@ This rule aims to eliminate unused expressions which have no effect on the state
15
15
This rule does not apply to function calls or constructor calls with the `new` operator, because they could have *side effects* on the state of the program.
16
16
17
17
```js
18
-
var i =0;
18
+
let i =0;
19
19
functionincrement() { i +=1; }
20
20
increment(); // return value is unused, but i changed as a side effect
21
21
22
-
var nThings =0;
22
+
let nThings =0;
23
23
functionThing() { nThings +=1; }
24
24
newThing(); // constructed object is unused, but nThings changed as a side effect
25
25
```
@@ -270,9 +270,9 @@ Examples of **correct** code for the `{ "enforceForJSX": true }` option:
Copy file name to clipboardexpand all lines: docs/src/rules/no-void.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ foo = undefined;
43
43
When used with IIFE (immediately-invoked function expression), `void` can be used to force the function keyword to be treated as an expression instead of a declaration:
44
44
45
45
```js
46
-
var foo =1;
46
+
let foo =1;
47
47
voidfunction(){ foo =1; }() // will assign foo a value of 1
48
48
+function(){ foo =1; }() // same as above
49
49
```
@@ -68,7 +68,7 @@ Examples of **incorrect** code for this rule:
68
68
void foo
69
69
voidsomeFunction();
70
70
71
-
var foo =voidbar();
71
+
constfoo=voidbar();
72
72
functionbaz() {
73
73
returnvoid0;
74
74
}
@@ -93,7 +93,7 @@ Examples of **incorrect** code for `{ "allowAsStatement": true }`:
0 commit comments