mirror of
https://github.com/selfxyz/self.git
synced 2026-02-19 02:24:25 -05:00
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:
4
app/src/types/png.d.ts
vendored
Normal file
4
app/src/types/png.d.ts
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
declare module '*.png' {
|
||||
const content: any;
|
||||
export default content;
|
||||
}
|
||||
6
app/src/types/svg.d.ts
vendored
Normal file
6
app/src/types/svg.d.ts
vendored
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user