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
+6 -6
View File
@@ -1,7 +1,7 @@
module.exports = function (api) {
api.cache(true);
return {
presets: [["babel-preset-expo", { jsxRuntime: "automatic" }]],
plugins: ["react-native-reanimated/plugin"],
};
module.exports = (api) => {
api.cache(true);
return {
plugins: ["react-native-reanimated/plugin"],
presets: [["babel-preset-expo", { jsxRuntime: "automatic" }]],
};
};