@@ -630,6 +630,7 @@ export class Tracing implements Integration {
630630 let entryScriptStartEndTime : number | undefined ;
631631 let tracingInitMarkStartTime : number | undefined ;
632632
633+ /* eslint-disable @typescript-eslint/no-unsafe-member-access */
633634 performance
634635 . getEntries ( )
635636 . slice ( Tracing . _performanceCursor )
@@ -687,6 +688,7 @@ export class Tracing implements Integration {
687688 // Ignore other entry types.
688689 }
689690 } ) ;
691+ /* eslint-enable @typescript-eslint/no-unsafe-member-access */
690692
691693 if ( entryScriptStartEndTime !== undefined && tracingInitMarkStartTime !== undefined ) {
692694 _startChild ( transactionSpan , {
@@ -771,6 +773,7 @@ export class Tracing implements Integration {
771773 return time / 1000 ;
772774 }
773775
776+ /* eslint-disable @typescript-eslint/no-unsafe-member-access */
774777 /**
775778 * Adds debug data to the span
776779 */
@@ -792,6 +795,7 @@ export class Tracing implements Integration {
792795 debugData [ 'Date.now()' ] = Date . now ( ) ;
793796 span . setData ( 'sentry_debug' , debugData ) ;
794797 }
798+ /* eslint-enable @typescript-eslint/no-unsafe-member-access */
795799
796800 /**
797801 * @inheritDoc
@@ -934,6 +938,7 @@ export class Tracing implements Integration {
934938 }
935939}
936940
941+ /* eslint-disable @typescript-eslint/no-unsafe-member-access */
937942/**
938943 * Creates breadcrumbs from XHR API calls
939944 */
@@ -1038,6 +1043,7 @@ function fetchCallback(handlerData: { [key: string]: any }): void {
10381043 }
10391044 }
10401045}
1046+ /* eslint-enable @typescript-eslint/no-unsafe-member-access */
10411047
10421048/**
10431049 * Creates transaction from navigation changes
0 commit comments