@@ -35,12 +35,12 @@ Examples of **incorrect** code for this rule with the `"always"` option:
35
35
``` js
36
36
/* eslint array-bracket-newline: ["error", "always"]*/
37
37
38
- var a = [];
39
- var b = [1 ];
40
- var c = [1 , 2 ];
41
- var d = [1 ,
38
+ const a = [];
39
+ const b = [1 ];
40
+ const c = [1 , 2 ];
41
+ const d = [1 ,
42
42
2 ];
43
- var e = [function foo () {
43
+ const e = [function foo () {
44
44
dosomething ();
45
45
}];
46
46
```
@@ -54,19 +54,19 @@ Examples of **correct** code for this rule with the `"always"` option:
54
54
``` js
55
55
/* eslint array-bracket-newline: ["error", "always"]*/
56
56
57
- var a = [
57
+ const a = [
58
58
];
59
- var b = [
59
+ const b = [
60
60
1
61
61
];
62
- var c = [
62
+ const c = [
63
63
1 , 2
64
64
];
65
- var d = [
65
+ const d = [
66
66
1 ,
67
67
2
68
68
];
69
- var e = [
69
+ const e = [
70
70
function foo () {
71
71
dosomething ();
72
72
}
@@ -84,19 +84,19 @@ Examples of **incorrect** code for this rule with the `"never"` option:
84
84
``` js
85
85
/* eslint array-bracket-newline: ["error", "never"]*/
86
86
87
- var a = [
87
+ const a = [
88
88
];
89
- var b = [
89
+ const b = [
90
90
1
91
91
];
92
- var c = [
92
+ const c = [
93
93
1 , 2
94
94
];
95
- var d = [
95
+ const d = [
96
96
1 ,
97
97
2
98
98
];
99
- var e = [
99
+ const e = [
100
100
function foo () {
101
101
dosomething ();
102
102
}
@@ -112,12 +112,12 @@ Examples of **correct** code for this rule with the `"never"` option:
112
112
``` js
113
113
/* eslint array-bracket-newline: ["error", "never"]*/
114
114
115
- var a = [];
116
- var b = [1 ];
117
- var c = [1 , 2 ];
118
- var d = [1 ,
115
+ const a = [];
116
+ const b = [1 ];
117
+ const c = [1 , 2 ];
118
+ const d = [1 ,
119
119
2 ];
120
- var e = [function foo () {
120
+ const e = [function foo () {
121
121
dosomething ();
122
122
}];
123
123
```
@@ -133,15 +133,15 @@ Examples of **incorrect** code for this rule with the `"consistent"` option:
133
133
``` js
134
134
/* eslint array-bracket-newline: ["error", "consistent"]*/
135
135
136
- var a = [1
136
+ const a = [1
137
137
];
138
- var b = [
138
+ const b = [
139
139
1 ];
140
- var c = [function foo () {
140
+ const c = [function foo () {
141
141
dosomething ();
142
142
}
143
143
]
144
- var d = [
144
+ const d = [
145
145
function foo () {
146
146
dosomething ();
147
147
}]
@@ -156,17 +156,17 @@ Examples of **correct** code for this rule with the `"consistent"` option:
156
156
``` js
157
157
/* eslint array-bracket-newline: ["error", "consistent"]*/
158
158
159
- var a = [];
160
- var b = [
159
+ const a = [];
160
+ const b = [
161
161
];
162
- var c = [1 ];
163
- var d = [
162
+ const c = [1 ];
163
+ const d = [
164
164
1
165
165
];
166
- var e = [function foo () {
166
+ const e = [function foo () {
167
167
dosomething ();
168
168
}];
169
- var f = [
169
+ const f = [
170
170
function foo () {
171
171
dosomething ();
172
172
}
@@ -184,17 +184,17 @@ Examples of **incorrect** code for this rule with the default `{ "multiline": tr
184
184
``` js
185
185
/* eslint array-bracket-newline: ["error", { "multiline": true }]*/
186
186
187
- var a = [
187
+ const a = [
188
188
];
189
- var b = [
189
+ const b = [
190
190
1
191
191
];
192
- var c = [
192
+ const c = [
193
193
1 , 2
194
194
];
195
- var d = [1 ,
195
+ const d = [1 ,
196
196
2 ];
197
- var e = [function foo () {
197
+ const e = [function foo () {
198
198
dosomething ();
199
199
}];
200
200
```
@@ -208,14 +208,14 @@ Examples of **correct** code for this rule with the default `{ "multiline": true
208
208
``` js
209
209
/* eslint array-bracket-newline: ["error", { "multiline": true }]*/
210
210
211
- var a = [];
212
- var b = [1 ];
213
- var c = [1 , 2 ];
214
- var d = [
211
+ const a = [];
212
+ const b = [1 ];
213
+ const c = [1 , 2 ];
214
+ const d = [
215
215
1 ,
216
216
2
217
217
];
218
- var e = [
218
+ const e = [
219
219
function foo () {
220
220
dosomething ();
221
221
}
@@ -233,15 +233,15 @@ Examples of **incorrect** code for this rule with the `{ "minItems": 2 }` option
233
233
``` js
234
234
/* eslint array-bracket-newline: ["error", { "minItems": 2 }]*/
235
235
236
- var a = [
236
+ const a = [
237
237
];
238
- var b = [
238
+ const b = [
239
239
1
240
240
];
241
- var c = [1 , 2 ];
242
- var d = [1 ,
241
+ const c = [1 , 2 ];
242
+ const d = [1 ,
243
243
2 ];
244
- var e = [
244
+ const e = [
245
245
function foo () {
246
246
dosomething ();
247
247
}
@@ -257,16 +257,16 @@ Examples of **correct** code for this rule with the `{ "minItems": 2 }` option:
257
257
``` js
258
258
/* eslint array-bracket-newline: ["error", { "minItems": 2 }]*/
259
259
260
- var a = [];
261
- var b = [1 ];
262
- var c = [
260
+ const a = [];
261
+ const b = [1 ];
262
+ const c = [
263
263
1 , 2
264
264
];
265
- var d = [
265
+ const d = [
266
266
1 ,
267
267
2
268
268
];
269
- var e = [function foo () {
269
+ const e = [function foo () {
270
270
dosomething ();
271
271
}];
272
272
```
@@ -282,15 +282,15 @@ Examples of **incorrect** code for this rule with the `{ "multiline": true, "min
282
282
``` js
283
283
/* eslint array-bracket-newline: ["error", { "multiline": true, "minItems": 2 }]*/
284
284
285
- var a = [
285
+ const a = [
286
286
];
287
- var b = [
287
+ const b = [
288
288
1
289
289
];
290
- var c = [1 , 2 ];
291
- var d = [1 ,
290
+ const c = [1 , 2 ];
291
+ const d = [1 ,
292
292
2 ];
293
- var e = [function foo () {
293
+ const e = [function foo () {
294
294
dosomething ();
295
295
}];
296
296
```
@@ -304,16 +304,16 @@ Examples of **correct** code for this rule with the `{ "multiline": true, "minIt
304
304
``` js
305
305
/* eslint array-bracket-newline: ["error", { "multiline": true, "minItems": 2 }]*/
306
306
307
- var a = [];
308
- var b = [1 ];
309
- var c = [
307
+ const a = [];
308
+ const b = [1 ];
309
+ const c = [
310
310
1 , 2
311
311
];
312
- var d = [
312
+ const d = [
313
313
1 ,
314
314
2
315
315
];
316
- var e = [
316
+ const e = [
317
317
function foo () {
318
318
dosomething ();
319
319
}
0 commit comments