Skip to content

Commit 0154341

Browse files
committed
chore: reduce biome upgrade churn
1 parent 30cb8c8 commit 0154341

57 files changed

Lines changed: 98 additions & 116 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

apps/tester-app/__tests__/bundle.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ describe('bundle command', () => {
144144
webpackConfig: path.join(__dirname, 'configs', configFile),
145145
};
146146

147-
// @ts-expect-error
147+
// @ts-ignore
148148
await bundleCommand.func([''], config, args);
149149

150150
const files = await globby(['**/*'], { cwd: TMP_DIR, dot: true });

apps/tester-app/__tests__/start.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ describe('start command', () => {
105105
webpackConfig: path.join(__dirname, 'configs', configFile),
106106
};
107107

108-
// @ts-expect-error
108+
// @ts-ignore
109109
const { stop } = await startCommand.func([], config, args);
110110
stopServer = stop;
111111
});

apps/tester-app/src/nativewind/ui/Button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { cva, type VariantProps } from 'class-variance-authority';
1+
import { type VariantProps, cva } from 'class-variance-authority';
22
import * as React from 'react';
33
import { Pressable } from 'react-native';
44
import { TextClassContext } from './Text';

apps/tester-app/src/ui/Section.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { StyleSheet, View } from 'react-native';
2-
import { Colors } from './colors';
32
import { Text } from './Text';
3+
import { Colors } from './colors';
44
import type { WithChildren } from './types';
55

66
type SectionProps = WithChildren<{

apps/tester-federation-v2/configs/webpack.host-app.mts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default Repack.defineWebpackConfig((env) => {
2828
],
2929
},
3030
plugins: [
31-
// @ts-expect-error
31+
// @ts-ignore
3232
new Repack.RepackPlugin({
3333
extraChunks: [
3434
{
@@ -38,7 +38,7 @@ export default Repack.defineWebpackConfig((env) => {
3838
},
3939
],
4040
}),
41-
// @ts-expect-error
41+
// @ts-ignore
4242
new Repack.plugins.ModuleFederationPluginV2({
4343
name: 'HostApp',
4444
filename: 'HostApp.container.js.bundle',

apps/tester-federation-v2/configs/webpack.mini-app.mts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export default Repack.defineWebpackConfig((env) => {
2727
],
2828
},
2929
plugins: [
30-
// @ts-expect-error
30+
// @ts-ignore
3131
new Repack.RepackPlugin({
3232
extraChunks: [
3333
{
@@ -37,7 +37,7 @@ export default Repack.defineWebpackConfig((env) => {
3737
},
3838
],
3939
}),
40-
// @ts-expect-error
40+
// @ts-ignore
4141
new Repack.plugins.ModuleFederationPluginV2({
4242
name: 'MiniApp',
4343
filename: 'MiniApp.container.js.bundle',

apps/tester-federation-v2/src/host/navigation/MainNavigator.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {
2-
createNativeStackNavigator,
32
type NativeStackNavigationProp,
3+
createNativeStackNavigator,
44
} from '@react-navigation/native-stack';
55
import { StyleSheet } from 'react-native';
66

apps/tester-federation-v2/src/mini/navigation/MainNavigator.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {
2-
createNativeStackNavigator,
32
type NativeStackNavigationProp,
3+
createNativeStackNavigator,
44
} from '@react-navigation/native-stack';
55
import { StyleSheet } from 'react-native';
66

apps/tester-federation/configs/rspack.host-app.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export default Repack.defineRspackConfig((env) => {
9898
};
9999

100100
if (process.env.RSDOCTOR) {
101-
// @ts-expect-error
101+
// @ts-ignore
102102
config.plugins?.push(new RsdoctorRspackPlugin());
103103
}
104104

apps/tester-federation/configs/rspack.mini-app.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export default Repack.defineRspackConfig((env) => {
9898
};
9999

100100
if (process.env.RSDOCTOR) {
101-
// @ts-expect-error
101+
// @ts-ignore
102102
config.plugins?.push(new RsdoctorRspackPlugin());
103103
}
104104

0 commit comments

Comments
 (0)