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
+13 -13
View File
@@ -1,18 +1,18 @@
const path = require('path')
const pkg = require('../package.json')
const path = require("node:path");
const pkg = require("../package.json");
/**
* @type {import('@react-native-community/cli-types').Config}
*/
module.exports = {
project: {
ios: {
automaticPodsInstallation: true,
},
},
dependencies: {
[pkg.name]: {
root: path.join(__dirname, '..'),
},
},
}
project: {
ios: {
automaticPodsInstallation: true,
},
},
dependencies: {
[pkg.name]: {
root: path.join(__dirname, ".."),
},
},
};