Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(turbopack): Delete to-resolved-in-loop lint (too low signal) (#…
…74113) Had a discussion with @sokra about this during office hours. We were in agreement to delete this, not because it's usually wrong, but just because it's not high-signal enough: - Many instances of `to_resolved().await` are on simple constructor calls, so it doesn't really matter if they're sequential. We could add some heuristics for this, but they'd be imperfect. - `to_resolved().await` isn't actually what drives the work forward, it's the function call that schedules the work, so in some cases this isn't accurate (and you can't know without type information). - This would make more sense if we were typically starved for work, but usually we have more tokio tasks than we can process anyways, so increasing parallelism is unlikely to help in most cases. - Some code isn't performance sensitive (e.g. internal CLI utilities, tests), so this is just noise in those places.
- Loading branch information