Hopefully feature-complete Android Bluesky client written in Expo
atproto bluesky
at main 430 B view raw
1// https://docs.expo.dev/guides/using-eslint/ 2const { defineConfig } = require("eslint/config"); 3const expoConfig = require("eslint-config-expo/flat"); 4 5module.exports = defineConfig([ 6 expoConfig, 7 { 8 ignores: ["dist/*"], 9 }, 10 { 11 settings: { 12 "import/resolver": { 13 typescript: { 14 // This is needed to properly resolve paths 15 project: "./tsconfig.json", 16 }, 17 }, 18 }, 19 }, 20]);