-
Notifications
You must be signed in to change notification settings - Fork 36
feat: migrate AppDelegate to Swift and remove legacy files for improved architecture #660
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: new-arch/master
Are you sure you want to change the base?
Conversation
…update types for SDK functions
…nse types for better null handling
❌ 5 blocking issues (5 total)
This is from Qlty Cloud, the successor to Code Climate Quality. Learn more. |
@@ -0,0 +1,113 @@ | |||
import { type TurboModule, TurboModuleRegistry } from 'react-native'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -0,0 +1,4 @@ | |||
import { NativeEventEmitter, NativeModules } from 'react-native'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -0,0 +1,9 @@ | |||
import TurboIterableModule from './NativeRNIterableApi'; // new arch |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -714,6 +721,7 @@ export class Iterable { | |||
) { | |||
Iterable?.logger?.log('updateUser'); | |||
|
|||
// @ts-ignore |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free. [eslint:@typescript-eslint/ban-ts-comment]
// @ts-ignore | |
// @ts-expect-error |
Replace "@ts-ignore" with "@ts-expect-error".
dataRegion: this.dataRegion, | ||
// @ts-ignore |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free. [eslint:@typescript-eslint/ban-ts-comment]
// @ts-ignore | |
// @ts-expect-error |
Replace "@ts-ignore" with "@ts-expect-error".
@@ -0,0 +1,113 @@ | |||
import { type TurboModule, TurboModuleRegistry } from 'react-native'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -0,0 +1,4 @@ | |||
import { NativeEventEmitter, NativeModules } from 'react-native'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -0,0 +1,9 @@ | |||
import TurboIterableModule from './NativeRNIterableApi'; // new arch |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -714,6 +721,7 @@ export class Iterable { | |||
) { | |||
Iterable?.logger?.log('updateUser'); | |||
|
|||
// @ts-ignore |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free. [eslint:@typescript-eslint/ban-ts-comment]
// @ts-ignore | |
// @ts-expect-error |
Replace "@ts-ignore" with "@ts-expect-error".
dataRegion: this.dataRegion, | ||
// @ts-ignore |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free. [eslint:@typescript-eslint/ban-ts-comment]
// @ts-ignore | |
// @ts-expect-error |
Replace "@ts-ignore" with "@ts-expect-error".
🔹 JIRA Ticket(s) if any
✏️ Description