SEL-269: Update ESLint rules & lock prettier config (#781)

* Update ESLint config and lock prettier config

* Refine ESLint config and fix lint issues

* Apply eslint fixes

* Use socketIo alias (#782)

* move gesture handler

* save wip updates

* fix svg imports

* update tsconfig

* eslint updates

* eslint fixes

* improve ignore folders

* coderabbit feedback

* Fix style prop shorthands (#787)

* Expand view style props

* Expand remaining style props

* update types

* fix pipeline

* fix test env check

* nicer casting

* fix booleans

* update deeplink url handling and make it more robust

* add socket error handler
This commit is contained in:
Justin Hernandez
2025-07-24 21:17:54 -07:00
committed by GitHub
parent f739fedd82
commit bf3ef98c9d
70 changed files with 1504 additions and 591 deletions

4
app/src/types/png.d.ts vendored Normal file
View File

@@ -0,0 +1,4 @@
declare module '*.png' {
const content: any;
export default content;
}

6
app/src/types/svg.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
declare module '*.svg' {
import React from 'react';
import { SvgProps } from 'react-native-svg';
const content: React.FC<SvgProps>;
export default content;
}