Hi, can we expect IDE inspections on kotlinx.corou...
# coroutines
l
Hi, can we expect IDE inspections on kotlinx.coroutines before it leaves the experimental status? I'm think about suggestions to replace
async(someContext) { ... }.await()
with
withContext(someContext) { ... }
, warnings when
async
result is not used, etc.