Skip to content

Commit 093fb3d

Browse files
docs: replace var with let and const in rule examples (#19365)
* docs: replace var in no-useless-backreference * docs: replace var with let and const
1 parent 417de32 commit 093fb3d

5 files changed

+56
-45
lines changed

docs/src/rules/arrow-body-style.md

+32-21
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Examples of **incorrect** code for this rule with the `"always"` option:
3232
```js
3333
/*eslint arrow-body-style: ["error", "always"]*/
3434

35-
let foo = () => 0;
35+
const foo = () => 0;
3636
```
3737

3838
:::
@@ -44,10 +44,11 @@ Examples of **correct** code for this rule with the `"always"` option:
4444
```js
4545
/*eslint arrow-body-style: ["error", "always"]*/
4646

47-
let foo = () => {
47+
const foo = () => {
4848
return 0;
4949
};
50-
let bar = (retv, name) => {
50+
51+
const bar = (retv, name) => {
5152
retv[name] = true;
5253
return retv;
5354
};
@@ -64,10 +65,11 @@ Examples of **incorrect** code for this rule with the default `"as-needed"` opti
6465
```js
6566
/*eslint arrow-body-style: ["error", "as-needed"]*/
6667

67-
let foo = () => {
68+
const foo = () => {
6869
return 0;
6970
};
70-
let bar = () => {
71+
72+
const bar = () => {
7173
return {
7274
bar: {
7375
foo: 1,
@@ -86,24 +88,29 @@ Examples of **correct** code for this rule with the default `"as-needed"` option
8688
```js
8789
/*eslint arrow-body-style: ["error", "as-needed"]*/
8890

89-
let foo1 = () => 0;
90-
let foo2 = (retv, name) => {
91+
const foo1 = () => 0;
92+
93+
const foo2 = (retv, name) => {
9194
retv[name] = true;
9295
return retv;
9396
};
94-
let foo3 = () => ({
97+
98+
const foo3 = () => ({
9599
bar: {
96100
foo: 1,
97101
bar: 2,
98102
}
99103
});
100-
let foo4 = () => { bar(); };
101-
let foo5 = () => {};
102-
let foo6 = () => { /* do nothing */ };
103-
let foo7 = () => {
104+
105+
const foo4 = () => { bar(); };
106+
const foo5 = () => {};
107+
const foo6 = () => { /* do nothing */ };
108+
109+
const foo7 = () => {
104110
// do nothing.
105111
};
106-
let foo8 = () => ({ bar: 0 });
112+
113+
const foo8 = () => ({ bar: 0 });
107114
```
108115

109116
:::
@@ -119,8 +126,9 @@ Examples of **incorrect** code for this rule with the `{ "requireReturnForObject
119126
```js
120127
/*eslint arrow-body-style: ["error", "as-needed", { "requireReturnForObjectLiteral": true }]*/
121128

122-
let foo = () => ({});
123-
let bar = () => ({ bar: 0 });
129+
const foo = () => ({});
130+
131+
const bar = () => ({ bar: 0 });
124132
```
125133

126134
:::
@@ -132,8 +140,9 @@ Examples of **correct** code for this rule with the `{ "requireReturnForObjectLi
132140
```js
133141
/*eslint arrow-body-style: ["error", "as-needed", { "requireReturnForObjectLiteral": true }]*/
134142

135-
let foo = () => {};
136-
let bar = () => { return { bar: 0 }; };
143+
const foo = () => {};
144+
145+
const bar = () => { return { bar: 0 }; };
137146
```
138147

139148
:::
@@ -147,10 +156,11 @@ Examples of **incorrect** code for this rule with the `"never"` option:
147156
```js
148157
/*eslint arrow-body-style: ["error", "never"]*/
149158

150-
let foo = () => {
159+
const foo = () => {
151160
return 0;
152161
};
153-
let bar = (retv, name) => {
162+
163+
const bar = (retv, name) => {
154164
retv[name] = true;
155165
return retv;
156166
};
@@ -165,8 +175,9 @@ Examples of **correct** code for this rule with the `"never"` option:
165175
```js
166176
/*eslint arrow-body-style: ["error", "never"]*/
167177

168-
let foo = () => 0;
169-
let bar = () => ({ foo: 0 });
178+
const foo = () => 0;
179+
180+
const bar = () => ({ foo: 0 });
170181
```
171182

172183
:::

docs/src/rules/no-unmodified-loop-condition.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ Examples of **incorrect** code for this rule:
3737
```js
3838
/*eslint no-unmodified-loop-condition: "error"*/
3939

40-
var node = something;
40+
let node = something;
4141

4242
while (node) {
4343
doSomething(node);
4444
}
4545
node = other;
4646

47-
for (var j = 0; j < 5;) {
47+
for (let j = 0; j < 5;) {
4848
doSomething(j);
4949
}
5050

@@ -67,7 +67,7 @@ while (node) {
6767
node = node.parent;
6868
}
6969

70-
for (var j = 0; j < items.length; ++j) {
70+
for (let j = 0; j < items.length; ++j) {
7171
doSomething(items[j]);
7272
}
7373

docs/src/rules/no-unsafe-optional-chaining.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ rule_type: problem
88
The optional chaining (`?.`) expression can short-circuit with a return value of `undefined`. Therefore, treating an evaluated optional chaining expression as a function, object, number, etc., can cause TypeError or unexpected results. For example:
99

1010
```js
11-
var obj = undefined;
11+
const obj = undefined;
1212

1313
1 in obj?.foo; // TypeError
1414
with (obj?.foo); // TypeError
@@ -20,7 +20,7 @@ const { bar } = obj?.foo; // TypeError
2020
Also, parentheses limit the scope of short-circuiting in chains. For example:
2121
2222
```js
23-
var obj = undefined;
23+
const obj = undefined;
2424

2525
(obj?.foo)(); // TypeError
2626
(obj?.foo).bar; // TypeError
@@ -77,7 +77,7 @@ with (obj?.foo);
7777

7878
class A extends obj?.foo {}
7979

80-
var a = class A extends obj?.foo {};
80+
const a = class A extends obj?.foo {};
8181

8282
async function foo () {
8383
const { bar } = await obj?.foo;
@@ -111,7 +111,7 @@ foo?.()?.bar;
111111

112112
new (obj?.foo ?? bar)();
113113

114-
var baz = {...obj?.foo};
114+
const baz = {...obj?.foo};
115115

116116
const { bar } = obj?.foo || baz;
117117

docs/src/rules/no-useless-backreference.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ In JavaScript regular expressions, it's syntactically valid to define a backrefe
1616
Backreferences that always successfully match zero-length and cannot match anything else are useless. They are basically ignored and can be removed without changing the behavior of the regular expression.
1717

1818
```js
19-
var regex = /^(?:(a)|\1b)$/;
19+
const regex = /^(?:(a)|\1b)$/;
2020

2121
regex.test("a"); // true
2222
regex.test("b"); // true!
2323
regex.test("ab"); // false
2424

25-
var equivalentRegex = /^(?:(a)|b)$/;
25+
const equivalentRegex = /^(?:(a)|b)$/;
2626

2727
equivalentRegex.test("a"); // true
2828
equivalentRegex.test("b"); // true

docs/src/rules/use-isnan.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -219,17 +219,17 @@ Examples of **incorrect** code for this rule with `"enforceForIndexOf"` option s
219219
```js
220220
/*eslint use-isnan: ["error", {"enforceForIndexOf": true}]*/
221221

222-
var hasNaN = myArray.indexOf(NaN) >= 0;
222+
const hasNaN = myArray.indexOf(NaN) >= 0;
223223

224-
var firstIndex = myArray.indexOf(NaN);
224+
const firstIndex = myArray.indexOf(NaN);
225225

226-
var lastIndex = myArray.lastIndexOf(NaN);
226+
const lastIndex = myArray.lastIndexOf(NaN);
227227

228-
var indexWithSequenceExpression = myArray.indexOf((doStuff(), NaN));
228+
const indexWithSequenceExpression = myArray.indexOf((doStuff(), NaN));
229229

230-
var firstIndexFromSecondElement = myArray.indexOf(NaN, 1);
230+
const firstIndexFromSecondElement = myArray.indexOf(NaN, 1);
231231

232-
var lastIndexFromSecondElement = myArray.lastIndexOf(NaN, 1);
232+
const lastIndexFromSecondElement = myArray.lastIndexOf(NaN, 1);
233233
```
234234

235235
:::
@@ -246,7 +246,7 @@ function myIsNaN(val) {
246246
}
247247

248248
function indexOfNaN(arr) {
249-
for (var i = 0; i < arr.length; i++) {
249+
for (let i = 0; i < arr.length; i++) {
250250
if (myIsNaN(arr[i])) {
251251
return i;
252252
}
@@ -255,30 +255,30 @@ function indexOfNaN(arr) {
255255
}
256256

257257
function lastIndexOfNaN(arr) {
258-
for (var i = arr.length - 1; i >= 0; i--) {
258+
for (let i = arr.length - 1; i >= 0; i--) {
259259
if (myIsNaN(arr[i])) {
260260
return i;
261261
}
262262
}
263263
return -1;
264264
}
265265

266-
var hasNaN = myArray.some(myIsNaN);
266+
const hasNaN = myArray.some(myIsNaN);
267267

268-
var hasNaN = indexOfNaN(myArray) >= 0;
268+
const hasNaN1 = indexOfNaN(myArray) >= 0;
269269

270-
var firstIndex = indexOfNaN(myArray);
270+
const firstIndex = indexOfNaN(myArray);
271271

272-
var lastIndex = lastIndexOfNaN(myArray);
272+
const lastIndex = lastIndexOfNaN(myArray);
273273

274274
// ES2015
275-
var hasNaN = myArray.some(Number.isNaN);
275+
const hasNaN2 = myArray.some(Number.isNaN);
276276

277277
// ES2015
278-
var firstIndex = myArray.findIndex(Number.isNaN);
278+
const firstIndex1 = myArray.findIndex(Number.isNaN);
279279

280280
// ES2016
281-
var hasNaN = myArray.includes(NaN);
281+
const hasNaN3 = myArray.includes(NaN);
282282
```
283283

284284
:::

0 commit comments

Comments
 (0)