refactor: fix all react-hooks/exhaustive-deps warnings in useSWR #927
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is the last PR to fix all
react-hooks/exhaustive-deps
warnings.The PR fixes the warnings in
useSWR
, which adds some deps formemoizedState
and disables the rule forrevalidate
.For
memoizedState
, I've added all deps in the deps array.boundMutate
is an immutable function, so we can omit it, but I've added it to the deps array to enablereact-hooks/exhaustive-deps
rule. It's an immutable function, so it shouldn't be a problem.For
revalidate
, I've disabled thereact-hooks/exhaustive-deps
rule becausefn
andconfig
are defined as the arguments ofuseSWR
call, which means those values would be changed every time.I could add
eventsCallback
,fnArgs
,keyErr
, andkeyValidating
into the deps array. It should be safe because they only depend onkey
that is already in the deps array.But it makes tests flakier because current tests depends on JavaScript timer naively. If I added meaning-less values in the deps array for
revalidate
, tests would be failed frequently. So I didn't add them into the deps array.I'll investigate the way to fix flaky tests.