is there a way to ignore warnings for an entire pr...
# announcements
w
is there a way to ignore warnings for an entire project / module? FlowPreview in my case
m
Copy code
kotlin.target.compilations.all {
	allKotlinSourceSets.forEach { sourceSet ->
		sourceSet.languageSettings.apply {
			useExperimentalAnnotation("kotlinx.coroutines.FlowPreview")
		}
	}
}
For your
build.gradle.kts
. Similar with Groovy
w
ty!