Hopefully feature-complete Android Bluesky client written in Expo
atproto bluesky

Fix ESLint

+1 -1
bun.lock
··· 45 45 }, 46 46 "devDependencies": { 47 47 "@types/react": "~19.1.0", 48 - "eslint": "^9.25.0", 48 + "eslint": "^9.39.2", 49 49 "eslint-config-expo": "~10.0.0", 50 50 "expo-atlas": "^0.4.0", 51 51 "typescript": "~5.9.2",
+13 -3
eslint.config.js
··· 1 1 // https://docs.expo.dev/guides/using-eslint/ 2 - const { defineConfig } = require('eslint/config'); 3 - const expoConfig = require('eslint-config-expo/flat'); 2 + const { defineConfig } = require("eslint/config"); 3 + const expoConfig = require("eslint-config-expo/flat"); 4 4 5 5 module.exports = defineConfig([ 6 6 expoConfig, 7 7 { 8 - ignores: ['dist/*'], 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 + }, 9 19 }, 10 20 ]);
+1 -1
package.json
··· 51 51 }, 52 52 "devDependencies": { 53 53 "@types/react": "~19.1.0", 54 - "eslint": "^9.25.0", 54 + "eslint": "^9.39.2", 55 55 "eslint-config-expo": "~10.0.0", 56 56 "expo-atlas": "^0.4.0", 57 57 "typescript": "~5.9.2"