-
Notifications
You must be signed in to change notification settings - Fork 0
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
Enable no-unsafe-call
eslint rule
#90
Conversation
@@ -32,7 +32,7 @@ const run = () => { | |||
} | |||
|
|||
if (current.name && current.meanDuration && current.meanCount && timestamp) { | |||
const formattedName = current.name.split(' ').join('-'); | |||
const formattedName = (current.name as string).split(' ').join('-'); |
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.
Let's deal with this any
type above, current
is any
too, so focus on this one. Looking at the code I think you should be able to figure out the type 👍
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.
There is a type in the name of this file
import type {AnimatedTextInputRef} from '@components/RNTextInput'; | ||
import type {BaseTextInputRef} from './types'; | ||
|
||
export default function isAnimatedTextInputRef(textInput: React.MutableRefObject<BaseTextInputRef | null>): boolean | null { |
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.
I think the name of function is a bit misleading, it's more about text input focus state and not if it's animatedTextInput
src/libs/Performance.tsx
Outdated
const {default: performance, setResourceLoggingEnabled, PerformanceObserver} = perfModule; | ||
const perfObserver: new (callback: PerformanceObserverCallback) => PerformanceObserver = PerformanceObserver; | ||
|
||
(setResourceLoggingEnabled as (enabled?: boolean) => void)(true); | ||
rnPerformance = performance; |
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.
Let's revert this change and instead fix any
as high as possible:
type ReactNativePerformance = {
default: RNPerformance;
setResourceLoggingEnabled: (enabled?: boolean) => void;
PerformanceObserver: typeof RNPerformanceObserver;
};
const perfModule: ReactNativePerformance = require('react-native-performance');
…sify-app-fork into ts/enable-no-unsafe-call
Details
Fixed Issues
$
PROPOSAL:
Tests
Offline tests
QA Steps
PR Author Checklist
### Fixed Issues
section aboveTests
sectionOffline steps
sectionQA steps
sectiontoggleReport
and notonIconClick
)myBool && <MyComponent />
.src/languages/*
files and using the translation methodSTYLE.md
) were followedAvatar
, I verified the components usingAvatar
are working as expected)StyleUtils.getBackgroundAndBorderStyle(theme.componentBG)
)Avatar
is modified, I verified thatAvatar
is working as expected in all cases)Design
label and/or tagged@Expensify/design
so the design team can review the changes.ScrollView
component to make it scrollable when more elements are added to the page.main
branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to theTest
steps.Screenshots/Videos
Android: Native
Android: mWeb Chrome
iOS: Native
iOS: mWeb Safari
MacOS: Chrome / Safari
MacOS: Desktop