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/consistent-this.md
+21-10
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ rule_type: suggestion
7
7
It is often necessary to capture the current execution context in order to make it available subsequently. A prominent example of this are jQuery callbacks:
8
8
9
9
```js
10
-
var that =this;
10
+
constthat=this;
11
11
jQuery('li').click(function (event) {
12
12
// here, "this" is the HTMLElement where the click event occurred
13
13
that.setFoo(42);
@@ -36,9 +36,9 @@ Examples of **incorrect** code for this rule with the default `"that"` option:
36
36
```js
37
37
/*eslint consistent-this: ["error", "that"]*/
38
38
39
-
var that =42;
39
+
let that =42;
40
40
41
-
varself=this;
41
+
letself=this;
42
42
43
43
that =42;
44
44
@@ -54,11 +54,11 @@ Examples of **correct** code for this rule with the default `"that"` option:
54
54
```js
55
55
/*eslint consistent-this: ["error", "that"]*/
56
56
57
-
var that =this;
57
+
let that =this;
58
58
59
-
varself=42;
59
+
constself=42;
60
60
61
-
varself;
61
+
let foo;
62
62
63
63
that =this;
64
64
@@ -74,7 +74,7 @@ Examples of **incorrect** code for this rule with the default `"that"` option, i
74
74
```js
75
75
/*eslint consistent-this: ["error", "that"]*/
76
76
77
-
var that;
77
+
let that;
78
78
functionf() {
79
79
that =this;
80
80
}
@@ -84,16 +84,27 @@ function f() {
84
84
85
85
Examples of **correct** code for this rule with the default `"that"` option, if the variable is not initialized:
86
86
87
+
Declaring a variable `that` and assigning `this` to it.
88
+
87
89
::: correct
88
90
89
91
```js
90
92
/*eslint consistent-this: ["error", "that"]*/
91
93
92
-
var that;
94
+
let that;
93
95
that =this;
96
+
```
97
+
98
+
:::
99
+
100
+
Declaring two variables, `foo` and `that`, with `foo` initialized, and then assigning `this` to `that`.
Copy file name to clipboardexpand all lines: docs/src/rules/id-length.md
+45-46
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ related_rules:
12
12
Very short identifier names like `e`, `x`, `_t` or very long ones like `hashGeneratorResultOutputContainerObject` can make code harder to read and potentially less maintainable. To prevent this, one may enforce a minimum and/or maximum identifier length.
13
13
14
14
```js
15
-
var x =5; // too short; difficult to understand its purpose without context
15
+
constx=5; // too short; difficult to understand its purpose without context
16
16
```
17
17
18
18
## Rule Details
@@ -30,15 +30,15 @@ Examples of **incorrect** code for this rule with the default options:
0 commit comments