File tree 4 files changed +1347
-1169
lines changed
4 files changed +1347
-1169
lines changed Original file line number Diff line number Diff line change @@ -381,6 +381,39 @@ const tsConfigurations = [
381
381
'@typescript-eslint/no-unsafe-return' : 'off' ,
382
382
'@typescript-eslint/restrict-template-expressions' : 'off' ,
383
383
'@typescript-eslint/explicit-module-boundary-types' : 'off' ,
384
+ '@typescript-eslint/no-floating-promises' : [
385
+ 'error' ,
386
+ {
387
+ allowForKnownSafeCalls : [
388
+ {
389
+ from : 'package' ,
390
+ name : [
391
+ 'after' ,
392
+ 'afterEach' ,
393
+ 'before' ,
394
+ 'beforeEach' ,
395
+ 'describe' ,
396
+ 'describe.only' ,
397
+ 'describe.skip' ,
398
+ 'describe.todo' ,
399
+ 'it' ,
400
+ 'it.only' ,
401
+ 'it.skip' ,
402
+ 'it.todo' ,
403
+ 'suite' ,
404
+ 'suite.only' ,
405
+ 'suite.skip' ,
406
+ 'suite.todo' ,
407
+ 'test' ,
408
+ 'test.only' ,
409
+ 'test.skip' ,
410
+ 'test.todo' ,
411
+ ] ,
412
+ package : 'node:test' ,
413
+ } ,
414
+ ] ,
415
+ } ,
416
+ ] ,
384
417
'@typescript-eslint/no-non-null-assertion' : 'off' ,
385
418
'@typescript-eslint/no-non-null-asserted-optional-chain' : 'off' ,
386
419
'@typescript-eslint/no-confusing-void-expression' : 'off' ,
You can’t perform that action at this time.
0 commit comments