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-eval.md
+21-21
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ further_reading:
12
12
JavaScript's `eval()` function is potentially dangerous and is often misused. Using `eval()` on untrusted code can open a program up to several different injection attacks. The use of `eval()` in most contexts can be substituted for a better, alternative approach to a problem.
13
13
14
14
```js
15
-
var obj = { x:"foo" },
15
+
constobj= { x:"foo" },
16
16
key ="x",
17
17
value =eval("obj."+ key);
18
18
```
@@ -28,17 +28,17 @@ Examples of **incorrect** code for this rule:
28
28
```js
29
29
/*eslint no-eval: "error"*/
30
30
31
-
var obj = { x:"foo" },
31
+
constobj= { x:"foo" },
32
32
key ="x",
33
33
value =eval("obj."+ key);
34
34
35
-
(0, eval)("var a = 0");
35
+
(0, eval)("const a = 0");
36
36
37
-
var foo = eval;
38
-
foo("var a = 0");
37
+
constfoo= eval;
38
+
foo("const a = 0");
39
39
40
40
// This `this` is the global object.
41
-
this.eval("var a = 0");
41
+
this.eval("const a = 0");
42
42
```
43
43
44
44
:::
@@ -51,7 +51,7 @@ Example of additional **incorrect** code for this rule with `window` global vari
51
51
/*eslint no-eval: "error"*/
52
52
/*global window*/
53
53
54
-
window.eval("var a = 0");
54
+
window.eval("const a = 0");
55
55
```
56
56
57
57
:::
@@ -64,7 +64,7 @@ Example of additional **incorrect** code for this rule with `global` global vari
64
64
/*eslint no-eval: "error"*/
65
65
/*global global*/
66
66
67
-
global.eval("var a = 0");
67
+
global.eval("const a = 0");
68
68
```
69
69
70
70
:::
@@ -76,22 +76,22 @@ Examples of **correct** code for this rule:
76
76
```js
77
77
/*eslint no-eval: "error"*/
78
78
79
-
var obj = { x:"foo" },
79
+
constobj= { x:"foo" },
80
80
key ="x",
81
81
value = obj[key];
82
82
83
83
classA {
84
84
foo() {
85
85
// This is a user-defined method.
86
-
this.eval("var a = 0");
86
+
this.eval("const a = 0");
87
87
}
88
88
89
89
eval() {
90
90
}
91
91
92
92
static {
93
93
// This is a user-defined static method.
94
-
this.eval("var a = 0");
94
+
this.eval("const a = 0");
95
95
}
96
96
97
97
staticeval() {
@@ -121,7 +121,7 @@ Example of **incorrect** code for this rule with the `{"allowIndirect": true}` o
Copy file name to clipboardexpand all lines: docs/src/rules/no-unneeded-ternary.md
+11-11
Original file line number
Diff line number
Diff line change
@@ -13,16 +13,16 @@ Here are some examples:
13
13
14
14
```js
15
15
// Bad
16
-
var isYes = answer ===1?true:false;
16
+
constisYes= answer ===1?true:false;
17
17
18
18
// Good
19
-
var isYes = answer ===1;
19
+
constisYes= answer ===1;
20
20
21
21
// Bad
22
-
var isNo = answer ===1?false:true;
22
+
constisNo= answer ===1?false:true;
23
23
24
24
// Good
25
-
var isNo = answer !==1;
25
+
constisNo= answer !==1;
26
26
```
27
27
28
28
Another common mistake is using a single variable as both the conditional test and the consequent. In such cases, the logical `OR` can be used to provide the same functionality.
@@ -47,9 +47,9 @@ Examples of **incorrect** code for this rule:
47
47
```js
48
48
/*eslint no-unneeded-ternary: "error"*/
49
49
50
-
var a = x ===2?true:false;
50
+
consta= x ===2?true:false;
51
51
52
-
var a= x ?true:false;
52
+
constb= x ?true:false;
53
53
```
54
54
55
55
:::
@@ -61,13 +61,13 @@ Examples of **correct** code for this rule:
61
61
```js
62
62
/*eslint no-unneeded-ternary: "error"*/
63
63
64
-
var a = x ===2?"Yes":"No";
64
+
consta= x ===2?"Yes":"No";
65
65
66
-
var a= x !==false;
66
+
constb= x !==false;
67
67
68
-
var a= x ?"Yes":"No";
68
+
constc= x ?"Yes":"No";
69
69
70
-
var a= x ? y : x;
70
+
constd= x ? y : x;
71
71
72
72
f(x ? x :1); // default assignment - would be disallowed if defaultAssignment option set to false. See option details below.
73
73
```
@@ -92,7 +92,7 @@ Examples of additional **incorrect** code for this rule with the `{ "defaultAssi
0 commit comments