Skip to content

Commit eae5106

Browse files
authored
chore(deps): Bump eslint to v8 (#5443)
1 parent ae76158 commit eae5106

File tree

9 files changed

+75
-192
lines changed

9 files changed

+75
-192
lines changed
0 Bytes
Binary file not shown.

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@
9898
"babel-plugin-module-resolver": "^5.0.0",
9999
"babel-preset-fbjs": "^3.4.0",
100100
"downlevel-dts": "^0.11.0",
101-
"eslint": "^7.6.0",
102-
"eslint-plugin-react": "^7.20.6",
101+
"eslint": "^8.57.0",
102+
"eslint-plugin-react": "^7.37.0",
103103
"eslint-plugin-react-native": "^3.8.1",
104104
"expo": "^53.0.0",
105105
"expo-module-scripts": "3.1.0",

packages/core/src/js/feedback/FeedbackWidgetProvider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { debug } from '@sentry/core';
22
import * as React from 'react';
3-
import { type NativeEventSubscription, type NativeScrollEvent,type NativeSyntheticEvent, Animated, Appearance, Dimensions, Easing, Modal, PanResponder, Platform, ScrollView, View } from 'react-native';
3+
import { Animated, Appearance, Dimensions, Easing, Modal, type NativeEventSubscription, type NativeScrollEvent,type NativeSyntheticEvent, PanResponder, Platform, ScrollView, View } from 'react-native';
44
import { notWeb } from '../utils/environment';
55
import { FeedbackButton } from './FeedbackButton';
66
import { FeedbackWidget } from './FeedbackWidget';

packages/core/src/js/feedback/integration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type Integration, getClient } from '@sentry/core';
1+
import { getClient, type Integration } from '@sentry/core';
22
import type { FeedbackWidgetTheme } from './FeedbackWidget.theme';
33
import type { FeedbackButtonProps, FeedbackWidgetProps, ScreenshotButtonProps } from './FeedbackWidget.types';
44

packages/core/src/js/integrations/expocontext.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type DeviceContext, type Event, type Integration, type OsContext, debug } from '@sentry/core';
1+
import { debug, type DeviceContext, type Event, type Integration, type OsContext } from '@sentry/core';
22
import type { ReactNativeClient } from '../client';
33
import { isExpo, isExpoGo } from '../utils/environment';
44
import { getExpoDevice, getExpoUpdates } from '../utils/expomodules';

packages/core/test/tools/sentryMetroSerializer.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import CountingSet from 'metro/private/lib/CountingSet';
66
import * as countLines from 'metro/private/lib/countLines';
77
import { minify } from 'uglify-js';
88
import { createSentryMetroSerializer } from '../../src/js/tools/sentryMetroSerializer';
9-
import { type MetroSerializer, type VirtualJSOutput, createDebugIdSnippet } from '../../src/js/tools/utils';
9+
import { createDebugIdSnippet, type MetroSerializer, type VirtualJSOutput } from '../../src/js/tools/utils';
1010

1111
describe('Sentry Metro Serializer', () => {
1212
test('debug id minified code snippet is the same as in the original implementation', () => {

packages/core/test/tracing/addTracingExtensions.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { Span } from '@sentry/core';
22
import { getCurrentScope, spanToJSON, startSpanManual } from '@sentry/core';
33
import { reactNativeTracingIntegration } from '../../src/js';
4-
import { type TestClient, setupTestClient } from '../mocks/client';
4+
import { setupTestClient, type TestClient } from '../mocks/client';
55

66
describe('Tracing extensions', () => {
77
let client: TestClient;

packages/core/test/tracing/gesturetracing.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { SPAN_ORIGIN_AUTO_INTERACTION } from '../../src/js/tracing/origin';
1111
import type { ReactNativeTracingIntegration } from '../../src/js/tracing/reactnativetracing';
1212
import { reactNativeTracingIntegration } from '../../src/js/tracing/reactnativetracing';
1313
import { SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN } from '../../src/js/tracing/semanticAttributes';
14-
import { type TestClient, setupTestClient } from '../mocks/client';
14+
import { setupTestClient, type TestClient } from '../mocks/client';
1515

1616
jest.mock('../../src/js/wrapper', () => {
1717
return {

0 commit comments

Comments
 (0)