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
+5 -5
View File
@@ -1,6 +1,6 @@
const { getDefaultConfig, mergeConfig } = require('@react-native/metro-config');
const path = require('path');
const root = path.resolve(__dirname, '..');
const { getDefaultConfig, mergeConfig } = require("@react-native/metro-config");
const path = require("node:path");
const root = path.resolve(__dirname, "..");
/**
* Metro configuration
@@ -9,7 +9,7 @@ const root = path.resolve(__dirname, '..');
* @type {import('metro-config').MetroConfig}
*/
const config = {
watchFolders: [root],
watchFolders: [root],
};
module.exports = mergeConfig(getDefaultConfig(__dirname), config);
module.exports = mergeConfig(getDefaultConfig(__dirname), config);