Skip to content

Commit 56ff404

Browse files
authored
docs: replace var with let or const in rules docs (#19396)
* docs: replace var with let or const in rules docs * docs: update global variable
1 parent 4053226 commit 56ff404

File tree

5 files changed

+24
-24
lines changed

5 files changed

+24
-24
lines changed

docs/src/rules/no-new.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ rule_type: suggestion
77
The goal of using `new` with a constructor is typically to create an object of a particular type and store that object in a variable, such as:
88

99
```js
10-
var person = new Person();
10+
const person = new Person();
1111
```
1212

1313
It's less common to use `new` and not store the result, such as:
@@ -41,7 +41,7 @@ Examples of **correct** code for this rule:
4141
```js
4242
/*eslint no-new: "error"*/
4343

44-
var thing = new Thing();
44+
const thing = new Thing();
4545

4646
Foo();
4747
```

docs/src/rules/no-unused-expressions.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ This rule aims to eliminate unused expressions which have no effect on the state
1515
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.
1616

1717
```js
18-
var i = 0;
18+
let i = 0;
1919
function increment() { i += 1; }
2020
increment(); // return value is unused, but i changed as a side effect
2121

22-
var nThings = 0;
22+
let nThings = 0;
2323
function Thing() { nThings += 1; }
2424
new Thing(); // constructed object is unused, but nThings changed as a side effect
2525
```
@@ -270,9 +270,9 @@ Examples of **correct** code for the `{ "enforceForJSX": true }` option:
270270
```jsx
271271
/*eslint no-unused-expressions: ["error", { "enforceForJSX": true }]*/
272272

273-
var myComponentPartial = <MyComponent />;
273+
const myComponentPartial = <MyComponent />;
274274

275-
var myFragment = <></>;
275+
const myFragment = <></>;
276276
```
277277

278278
:::

docs/src/rules/no-unused-vars.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ This rule is aimed at eliminating unused variables, functions, and function para
1616
A variable `foo` is considered to be used if any of the following are true:
1717

1818
* It is called (`foo()`) or constructed (`new foo()`)
19-
* It is read (`var bar = foo`)
19+
* It is read (`let bar = foo`)
2020
* It is passed into a function as an argument (`doSomething(foo)`)
2121
* It is read inside of a function that is passed to another function (`doSomething(function() { foo(); })`)
2222

23-
A variable is *not* considered to be used if it is only ever declared (`var foo = 5`) or assigned to (`foo = 7`).
23+
A variable is *not* considered to be used if it is only ever declared (`let foo = 5`) or assigned to (`foo = 7`).
2424

2525
Examples of **incorrect** code for this rule:
2626

@@ -33,14 +33,14 @@ Examples of **incorrect** code for this rule:
3333
// It checks variables you have defined as global
3434
some_unused_var = 42;
3535

36-
var x;
36+
let x;
3737

3838
// Write-only variables are not considered as used.
39-
var y = 10;
39+
let y = 10;
4040
y = 5;
4141

4242
// A read for a modification of itself is not considered as used.
43-
var z = 0;
43+
let z = 0;
4444
z = z + 1;
4545

4646
// By default, unused arguments cause warnings.
@@ -70,7 +70,7 @@ Examples of **correct** code for this rule:
7070
```js
7171
/*eslint no-unused-vars: "error"*/
7272

73-
var x = 10;
73+
const x = 10;
7474
alert(x);
7575

7676
// foo is considered used here
@@ -180,8 +180,8 @@ Examples of **correct** code for the `{ "varsIgnorePattern": "[iI]gnored" }` opt
180180
```js
181181
/*eslint no-unused-vars: ["error", { "varsIgnorePattern": "[iI]gnored" }]*/
182182

183-
var firstVarIgnored = 1;
184-
var secondVar = 2;
183+
const firstVarIgnored = 1;
184+
const secondVar = 2;
185185
console.log(secondVar);
186186
```
187187

@@ -404,12 +404,12 @@ Examples of **correct** code for the `{ "ignoreRestSiblings": true }` option:
404404
/*eslint no-unused-vars: ["error", { "ignoreRestSiblings": true }]*/
405405

406406
// 'foo' and 'bar' were ignored because they have a rest property sibling.
407-
var { foo, ...rest } = data;
407+
const { foo, ...rest } = data;
408408
console.log(rest);
409409

410410
// OR
411411

412-
var bar;
412+
let bar;
413413
({ bar, ...rest } = data);
414414
```
415415

@@ -474,8 +474,8 @@ Examples of **incorrect** code for the `{ "reportUsedIgnorePattern": true }` opt
474474
```js
475475
/*eslint no-unused-vars: ["error", { "reportUsedIgnorePattern": true, "varsIgnorePattern": "[iI]gnored" }]*/
476476

477-
var firstVarIgnored = 1;
478-
var secondVar = 2;
477+
const firstVarIgnored = 1;
478+
const secondVar = 2;
479479
console.log(firstVarIgnored, secondVar);
480480
```
481481

@@ -488,8 +488,8 @@ Examples of **correct** code for the `{ "reportUsedIgnorePattern": true }` optio
488488
```js
489489
/*eslint no-unused-vars: ["error", { "reportUsedIgnorePattern": true, "varsIgnorePattern": "[iI]gnored" }]*/
490490

491-
var firstVar = 1;
492-
var secondVar = 2;
491+
const firstVar = 1;
492+
const secondVar = 2;
493493
console.log(firstVar, secondVar);
494494
```
495495

docs/src/rules/no-void.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ foo = undefined;
4343
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:
4444

4545
```js
46-
var foo = 1;
46+
let foo = 1;
4747
void function(){ foo = 1; }() // will assign foo a value of 1
4848
+function(){ foo = 1; }() // same as above
4949
```
@@ -68,7 +68,7 @@ Examples of **incorrect** code for this rule:
6868
void foo
6969
void someFunction();
7070

71-
var foo = void bar();
71+
const foo = void bar();
7272
function baz() {
7373
return void 0;
7474
}
@@ -93,7 +93,7 @@ Examples of **incorrect** code for `{ "allowAsStatement": true }`:
9393
```js
9494
/*eslint no-void: ["error", { "allowAsStatement": true }]*/
9595

96-
var foo = void bar();
96+
const foo = void bar();
9797
function baz() {
9898
return void 0;
9999
}

docs/src/rules/prefer-arrow-callback.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ foo(a => a); // OK
5353
foo(function*() { yield; }); // OK
5454

5555
// function expression not used as callback or function argument
56-
var foo = function foo(a) { return a; }; // OK
56+
const foo = function foo(a) { return a; }; // OK
5757

5858
// unbound function expression callback
5959
foo(function() { return this.a; }); // OK

0 commit comments

Comments
 (0)