style(biome): using biome for format, lint, check

This commit is contained in:
2025-11-08 12:58:40 +02:00
parent 075a388ccb
commit fdd1cbbfd5
152 changed files with 3737 additions and 3989 deletions
+22 -22
View File
@@ -1,48 +1,48 @@
{
"expo": {
"name": "mobile",
"slug": "mobile",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "mobile",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"backgroundColor": "#E6F4FE",
"foregroundImage": "./assets/images/android-icon-foreground.png",
"backgroundImage": "./assets/images/android-icon-background.png",
"foregroundImage": "./assets/images/android-icon-foreground.png",
"monochromeImage": "./assets/images/android-icon-monochrome.png"
},
"edgeToEdgeEnabled": true,
"predictiveBackGestureEnabled": false
},
"web": {
"output": "static",
"favicon": "./assets/images/favicon.png"
"experiments": {
"reactCompiler": true,
"typedRoutes": true
},
"icon": "./assets/images/icon.png",
"ios": {
"supportsTablet": true
},
"name": "mobile",
"newArchEnabled": true,
"orientation": "portrait",
"plugins": [
"expo-router",
[
"expo-splash-screen",
{
"image": "./assets/images/splash-icon.png",
"imageWidth": 200,
"resizeMode": "contain",
"backgroundColor": "#ffffff",
"dark": {
"backgroundColor": "#000000"
}
},
"image": "./assets/images/splash-icon.png",
"imageWidth": 200,
"resizeMode": "contain"
}
]
],
"experiments": {
"typedRoutes": true,
"reactCompiler": true
"scheme": "mobile",
"slug": "mobile",
"userInterfaceStyle": "automatic",
"version": "1.0.0",
"web": {
"favicon": "./assets/images/favicon.png",
"output": "static"
}
}
}
+1 -1
View File
@@ -4,9 +4,9 @@ export default function Index() {
return (
<View
style={{
alignItems: "center",
flex: 1,
justifyContent: "center",
alignItems: "center",
}}
>
<Text>Edit app/index.tsx to edit this screen.</Text>
+14 -14
View File
@@ -1,15 +1,4 @@
{
"name": "@basango/mobile",
"main": "expo-router/entry",
"version": "1.0.0",
"scripts": {
"start": "expo start",
"reset-project": "node ./scripts/reset-project.js",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "expo lint"
},
"dependencies": {
"@expo/vector-icons": "^15.0.3",
"@react-navigation/bottom-tabs": "^7.4.0",
@@ -31,15 +20,26 @@
"react-dom": "catalog:",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-worklets": "0.5.1",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-web": "~0.21.0"
"react-native-web": "~0.21.0",
"react-native-worklets": "0.5.1"
},
"devDependencies": {
"@types/react": "catalog:",
"typescript": "catalog:"
},
"private": true
"main": "expo-router/entry",
"name": "@basango/mobile",
"private": true,
"scripts": {
"android": "expo start --android",
"ios": "expo start --ios",
"lint": "expo lint",
"reset-project": "node ./scripts/reset-project.js",
"start": "expo start",
"web": "expo start --web"
},
"version": "1.0.0"
}
+5 -12
View File
@@ -1,17 +1,10 @@
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true,
"paths": {
"@/*": [
"./*"
]
}
"@/*": ["./*"]
},
"strict": true
},
"include": [
"**/*.ts",
"**/*.tsx",
".expo/types/**/*.ts",
"expo-env.d.ts"
]
"extends": "expo/tsconfig.base",
"include": ["**/*.ts", "**/*.tsx", ".expo/types/**/*.ts", "expo-env.d.ts"]
}