-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
31 lines (28 loc) · 1.13 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import com.diffplug.gradle.spotless.SpotlessExtension
// Top-level build file where you can add configuration options common to all sub-projects/modules.
@Suppress("DSL_SCOPE_VIOLATION") // TODO: Remove once KTIJ-19369 is fixed
plugins {
alias(libs.plugins.android.application).apply(false)
alias(libs.plugins.android.library).apply(false)
alias(libs.plugins.kotlin.android).apply(false)
alias(libs.plugins.kotlin.jvm).apply(false)
alias(libs.plugins.ksp).apply(false)
alias(libs.plugins.dagger.hilt).apply(false)
alias(libs.plugins.kotlinx.serialization).apply(false)
alias(libs.plugins.spotless)
alias(libs.plugins.google.services).apply(false)
}
//
subprojects {
plugins.apply(rootProject.libs.plugins.spotless.get().pluginId)
extensions.configure<SpotlessExtension> {
kotlin {
target("**/*.kt", "**/test/**.kt", "**/androidTest/**.kt")
targetExclude("${layout.buildDirectory}/**/*.kt")
ktlint()
.setEditorConfigPath("${project.rootDir}/spotless/.editorconfig")
trimTrailingWhitespace()
endWithNewline()
}
}
}