We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51f5387 commit 967bfa4Copy full SHA for 967bfa4
buildSrc/build.gradle.kts
@@ -40,7 +40,7 @@ fun version(target: String): String {
40
41
kotlin {
42
compilerOptions {
43
- allWarningsAsErrors = true
+ allWarningsAsErrors = false
44
}
45
46
buildSrc/src/main/kotlin/CommunityProjectsBuild.kt
@@ -178,7 +178,7 @@ private fun warningsAreErrorsOverride(project: Project): Boolean? =
178
* Set warnings as errors, but allow the Kotlin User Project configuration to take over. See KT-75078.
179
*/
180
fun KotlinCommonCompilerOptions.setWarningsAsErrors(project: Project) {
181
- allWarningsAsErrors = warningsAreErrorsOverride(project) ?: true
+ allWarningsAsErrors = warningsAreErrorsOverride(project) ?: false
182
183
184
/**
0 commit comments