@@ -16,14 +16,14 @@ Here are a few common examples using the ES5 syntax:
16
16
17
17
``` js
18
18
// properties
19
- var foo = {
19
+ const foo = {
20
20
x: x,
21
21
y: y,
22
22
z: z,
23
23
};
24
24
25
25
// methods
26
- var foo = {
26
+ const bar = {
27
27
a : function () {},
28
28
b : function () {}
29
29
};
@@ -33,10 +33,10 @@ Now here are ES6 equivalents:
33
33
34
34
``` js
35
35
// properties
36
- var foo = {x, y, z};
36
+ const foo = {x, y, z};
37
37
38
38
// methods
39
- var foo = {
39
+ const bar = {
40
40
a () {},
41
41
b () {}
42
42
};
@@ -53,7 +53,7 @@ Each of the following properties would warn:
53
53
``` js
54
54
/* eslint object-shorthand: "error"*/
55
55
56
- var foo = {
56
+ const foo = {
57
57
w : function () {},
58
58
x : function * () {},
59
59
[y]: function () {},
@@ -66,7 +66,7 @@ In that case the expected syntax would have been:
66
66
``` js
67
67
/* eslint object-shorthand: "error"*/
68
68
69
- var foo = {
69
+ const foo = {
70
70
w () {},
71
71
* x () {},
72
72
[y ]() {},
@@ -80,7 +80,7 @@ The following will *not* warn:
80
80
``` js
81
81
/* eslint object-shorthand: "error"*/
82
82
83
- var foo = {
83
+ const foo = {
84
84
x : (y ) => y
85
85
};
86
86
```
@@ -126,7 +126,7 @@ Example of **incorrect** code for this rule with the `"always", { "avoidQuotes":
126
126
``` js
127
127
/* eslint object-shorthand: ["error", "always", { "avoidQuotes": true }]*/
128
128
129
- var foo = {
129
+ const foo = {
130
130
" bar-baz" () {}
131
131
};
132
132
```
@@ -140,7 +140,7 @@ Example of **correct** code for this rule with the `"always", { "avoidQuotes": t
140
140
``` js
141
141
/* eslint object-shorthand: ["error", "always", { "avoidQuotes": true }]*/
142
142
143
- var foo = {
143
+ const foo = {
144
144
" bar-baz " : function () {},
145
145
" qux" : qux
146
146
};
@@ -163,7 +163,7 @@ Example of **correct** code for this rule with the `"always", { "ignoreConstruct
163
163
``` js
164
164
/* eslint object-shorthand: ["error", "always", { "ignoreConstructors": true }]*/
165
165
166
- var foo = {
166
+ const foo = {
167
167
ConstructorFunction : function () {}
168
168
};
169
169
```
@@ -179,7 +179,7 @@ Example of **correct** code for this rule with the `"always", { "methodsIgnorePa
179
179
``` js
180
180
/* eslint object-shorthand: ["error", "always", { "methodsIgnorePattern": "^bar$" }]*/
181
181
182
- var foo = {
182
+ const foo = {
183
183
bar : function () {}
184
184
};
185
185
```
@@ -201,7 +201,7 @@ Example of **incorrect** code for this rule with the `"always", { "avoidExplicit
201
201
``` js
202
202
/* eslint object-shorthand: ["error", "always", { "avoidExplicitReturnArrows": true }]*/
203
203
204
- var foo = {
204
+ const foo = {
205
205
foo : (bar , baz ) => {
206
206
return bar + baz;
207
207
},
@@ -221,7 +221,7 @@ Example of **correct** code for this rule with the `"always", { "avoidExplicitRe
221
221
``` js
222
222
/* eslint object-shorthand: ["error", "always", { "avoidExplicitReturnArrows": true }]*/
223
223
224
- var foo = {
224
+ const foo = {
225
225
foo (bar , baz ) {
226
226
return bar + baz;
227
227
},
@@ -239,7 +239,7 @@ Example of **incorrect** code for this rule with the `"consistent"` option:
239
239
``` js
240
240
/* eslint object-shorthand: [2, "consistent"]*/
241
241
242
- var foo = {
242
+ const foo = {
243
243
a,
244
244
b: " foo" ,
245
245
};
@@ -254,12 +254,12 @@ Examples of **correct** code for this rule with the `"consistent"` option:
254
254
``` js
255
255
/* eslint object-shorthand: [2, "consistent"]*/
256
256
257
- var foo = {
257
+ const foo = {
258
258
a: a,
259
259
b: " foo"
260
260
};
261
261
262
- var bar = {
262
+ const bar = {
263
263
a,
264
264
b,
265
265
};
@@ -274,7 +274,7 @@ Example of **incorrect** code with the `"consistent-as-needed"` option, which is
274
274
``` js
275
275
/* eslint object-shorthand: [2, "consistent-as-needed"]*/
276
276
277
- var foo = {
277
+ const foo = {
278
278
a: a,
279
279
b: b,
280
280
};
0 commit comments