plugins { alias(libs.plugins.androidApplication) apply false alias(libs.plugins.androidLibrary) apply false alias(libs.plugins.composeMultiplatform) apply false alias(libs.plugins.composeCompiler) apply false // Applied here as well as in :androidApp, because a project only // formats its own files -- this one owns the two build scripts at the // root, and that module owns the Kotlin. alias(libs.plugins.ktfmt) } // ktfmt offers exactly two styles. This is the one in kotlinlang.org's // coding conventions; the other is Google's 2-space internal style. // Picked as the language's own standard rather than because it matches // what is here -- matching is a consequence, and would be the wrong // reason (code rule 27). ktfmt { kotlinLangStyle() }