Use biome instead of eslint/prettier

This commit is contained in:
2026-04-07 19:29:54 +02:00
parent b5a15a41e9
commit 56194f6f58
24 changed files with 425 additions and 492 deletions
+19 -18
View File
@@ -1,24 +1,25 @@
import React from 'react';
import { View, StyleSheet } from 'react-native';
import { Omni } from 'react-native-omni';
import type React from "react";
import { StyleSheet, View } from "react-native";
import { Omni } from "react-native-omni";
function App(): React.JSX.Element {
return (
<View style={styles.container}>
<Omni isRed={true} style={styles.view} testID="omni" />
</View>
);
return (
<View style={styles.container}>
<Omni isRed={true} style={styles.view} testID="omni" />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
view: {
width: 200,
height: 200
}});
container: {
flex: 1,
justifyContent: "center",
alignItems: "center",
},
view: {
width: 200,
height: 200,
},
});
export default App;
export default App;