my fork of the bluesky client

Remove unnecessary lint rule suppression (#6544)

* ▫️remove deprecated react native eslint package. add react hooks and modern native eslint package. fix bugs

* in retrospect lets just remove the async from uselocalelanguage

* finally clean it all up

* revert yarn.lock

* restore logic

authored by Paul Coroneos and committed by GitHub 437bdcf9 d9ba324d

Changed files
+1 -3
src
locale
-2
.eslintrc.js
··· 17 17 'eslint-plugin-react-compiler', 18 18 ], 19 19 rules: { 20 - // Temporary until https://github.com/facebook/react-native/pull/43756 gets into a release. 21 - 'prettier/prettier': 0, 22 20 'react/no-unescaped-entities': 0, 23 21 'react/prop-types': 0, 24 22 'react-native/no-inline-styles': 0,
+1 -1
src/locale/i18n.ts
··· 224 224 } 225 225 } 226 226 227 - export async function useLocaleLanguage() { 227 + export function useLocaleLanguage() { 228 228 const {appLanguage} = useLanguagePrefs() 229 229 useEffect(() => { 230 230 dynamicActivate(sanitizeAppLanguageSetting(appLanguage))