Skip to content

Commit c19c885

Browse files
committed
Lint
1 parent 33e6429 commit c19c885

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/node/src/integrations/anr/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import {
1414
} from '@sentry/core';
1515
import { NODE_VERSION } from '../../nodeVersion';
1616
import type { NodeClient } from '../../sdk/client';
17-
import type { AnrIntegrationOptions, WorkerStartData } from './common';
1817
import { isDebuggerEnabled } from '../../utils/debug';
18+
import type { AnrIntegrationOptions, WorkerStartData } from './common';
1919

2020
const { isPromise } = types;
2121

packages/node/src/integrations/local-variables/local-variables-async.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import { Worker } from 'node:worker_threads';
22
import type { Event, EventHint, Exception, IntegrationFn } from '@sentry/core';
33
import { defineIntegration, logger } from '@sentry/core';
44
import type { NodeClient } from '../../sdk/client';
5+
import { isDebuggerEnabled } from '../../utils/debug';
56
import type { FrameVariables, LocalVariablesIntegrationOptions, LocalVariablesWorkerArgs } from './common';
67
import { LOCAL_VARIABLES_KEY, functionNamesMatch } from './common';
7-
import { isDebuggerEnabled } from '../../utils/debug';
88

99
// This string is a placeholder that gets overwritten with the worker code.
1010
export const base64WorkerScript = '###LocalVariablesWorkerScript###';

packages/node/src/integrations/local-variables/local-variables-sync.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { Event, Exception, IntegrationFn, StackFrame, StackParser } from '@
33
import { LRUMap, defineIntegration, getClient, logger } from '@sentry/core';
44
import { NODE_MAJOR } from '../../nodeVersion';
55
import type { NodeClient } from '../../sdk/client';
6+
import { isDebuggerEnabled } from '../../utils/debug';
67
import type {
78
FrameVariables,
89
LocalVariablesIntegrationOptions,
@@ -11,7 +12,6 @@ import type {
1112
Variables,
1213
} from './common';
1314
import { createRateLimiter, functionNamesMatch } from './common';
14-
import { isDebuggerEnabled } from '../../utils/debug';
1515

1616
/** Creates a unique hash from stack frames */
1717
export function hashFrames(frames: StackFrame[] | undefined): string | undefined {

0 commit comments

Comments
 (0)