TraceLog/build.gradle.kts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
334 B
Plaintext
Raw Normal View History

plugins {
alias(libs.plugins.spotless)
id("tracelog-jvm-library") apply false
id("tracelog-kmp-library") apply false
}
2023-08-18 04:12:55 +05:30
spotless {
kotlin {
target("**/*.kt")
targetExclude("**/build/")
2023-08-18 04:12:55 +05:30
ktfmt().googleStyle()
}
kotlinGradle {
target("**/*.kts")
targetExclude("**/build/")
2023-08-18 04:12:55 +05:30
ktfmt().googleStyle()
}
}