Skip to content

Commit f67c8a9

Browse files
committed
fix: Format and lint fixes
1 parent 9d9663d commit f67c8a9

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

packages/core/src/index.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,7 @@ export { hasSpansEnabled } from './utils/hasSpansEnabled';
6969
export { isSentryRequestUrl } from './utils/isSentryRequestUrl';
7070
export { handleCallbackErrors } from './utils/handleCallbackErrors';
7171
export { parameterize, fmt } from './utils/parameterize';
72-
export {
73-
envToBool,
74-
FALSY_ENV_VALUES,
75-
TRUTHY_ENV_VALUES,
76-
} from './utils/envToBool';
72+
export { envToBool, FALSY_ENV_VALUES, TRUTHY_ENV_VALUES } from './utils/envToBool';
7773
export type { BoolCastOptions, StrictBoolCast, LooseBoolCast } from './utils/envToBool';
7874
export { parseSpotlightEnvValue, resolveSpotlightValue } from './utils/spotlight';
7975
export type { SpotlightConnectionOptions } from './utils/spotlight';

packages/core/test/lib/utils/spotlight.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { describe, expect, it, vi, afterEach, beforeEach } from 'vitest';
1+
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';
22
import * as debugLogger from '../../../src/utils/debug-logger';
33
import { parseSpotlightEnvValue, resolveSpotlightValue } from '../../../src/utils/spotlight';
44

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
// Re-export from core for backwards compatibility
2-
export {
3-
envToBool,
4-
FALSY_ENV_VALUES,
5-
TRUTHY_ENV_VALUES,
6-
} from '@sentry/core';
2+
export { envToBool, FALSY_ENV_VALUES, TRUTHY_ENV_VALUES } from '@sentry/core';
73
export type { BoolCastOptions, StrictBoolCast, LooseBoolCast } from '@sentry/core';

0 commit comments

Comments
 (0)