File tree 2 files changed +11
-9
lines changed 2 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 7
7
" plugin:github/typescript"
8
8
],
9
9
"rules" : {
10
- "github/no-then" : " off"
10
+ "github/no-then" : " off" ,
11
+ "import/extensions" : [" error" , " always" ],
12
+ "import/no-unresolved" : [" off" ]
11
13
},
12
14
"overrides" : [
13
15
{
Original file line number Diff line number Diff line change @@ -243,13 +243,13 @@ suite('include-fragment-element', function () {
243
243
} catch ( e ) {
244
244
assert . ok ( e )
245
245
} finally {
246
- let data
246
+ let data2
247
247
try {
248
- data = await el . data
248
+ data2 = await el . data
249
249
} catch {
250
- data = null
250
+ data2 = null
251
251
}
252
- assert . ok ( data !== 42 )
252
+ assert . ok ( data2 !== 42 )
253
253
}
254
254
} )
255
255
@@ -267,13 +267,13 @@ suite('include-fragment-element', function () {
267
267
} catch ( e ) {
268
268
assert . ok ( e )
269
269
} finally {
270
- let data
270
+ let data2
271
271
try {
272
- data = await el . data
272
+ data2 = await el . data
273
273
} catch {
274
- data = null
274
+ data2 = null
275
275
}
276
- assert . ok ( data !== undefined )
276
+ assert . ok ( data2 !== undefined )
277
277
}
278
278
} )
279
279
You can’t perform that action at this time.
0 commit comments