File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -59,8 +59,6 @@ module.exports = {
59
59
] ,
60
60
// TODO (high-prio): Re-enable this after migration
61
61
'@sentry-internal/sdk/no-async-await' : 'off' ,
62
- // TODO (high-prio): Re-enable this after migration
63
- '@typescript-eslint/no-floating-promises' : 'off' ,
64
62
// TODO (medium-prio): Re-enable this after migration
65
63
'jsdoc/require-jsdoc' : 'off' ,
66
64
} ,
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ export class EventBufferCompressionWorker implements IEventBuffer {
142
142
}
143
143
144
144
init ( ) : void {
145
- this . postMessage ( { id : this . id , method : 'init' , args : [ ] } ) ;
145
+ void this . postMessage ( { id : this . id , method : 'init' , args : [ ] } ) ;
146
146
__DEBUG_BUILD__ && logger . log ( '[Replay] Initialized compression worker' ) ;
147
147
}
148
148
Original file line number Diff line number Diff line change @@ -720,11 +720,11 @@ export class Replay implements Integration {
720
720
if ( type === 'history' ) {
721
721
// Need to collect visited URLs
722
722
this . context . urls . push ( result . name ) ;
723
- this . triggerUserActivity ( ) ;
723
+ void this . triggerUserActivity ( ) ;
724
724
}
725
725
726
726
this . addUpdate ( ( ) => {
727
- this . createPerformanceSpans ( [ result as ReplayPerformanceEntry ] ) ;
727
+ void this . createPerformanceSpans ( [ result as ReplayPerformanceEntry ] ) ;
728
728
// Returning true will cause `addUpdate` to not flush
729
729
// We do not want network requests to cause a flush. This will prevent
730
730
// recurring/polling requests from keeping the replay session alive.
@@ -755,7 +755,7 @@ export class Replay implements Integration {
755
755
}
756
756
757
757
if ( result . category === 'ui.click' ) {
758
- this . triggerUserActivity ( ) ;
758
+ void this . triggerUserActivity ( ) ;
759
759
} else {
760
760
this . checkAndHandleExpiredSession ( ) ;
761
761
}
@@ -1036,7 +1036,7 @@ export class Replay implements Integration {
1036
1036
return ;
1037
1037
}
1038
1038
1039
- this . flushImmediate ( ) ;
1039
+ void this . flushImmediate ( ) ;
1040
1040
}
1041
1041
1042
1042
/**
You can’t perform that action at this time.
0 commit comments