mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2025-09-07 16:09:38 +02:00
20 lines
439 B
Kotlin
20 lines
439 B
Kotlin
|
/*
|
||
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
||
|
* SPDX-License-Identifier: GPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
import com.diffplug.gradle.spotless.SpotlessExtension
|
||
|
|
||
|
internal fun SpotlessExtension.configureSpotless() {
|
||
|
kotlin {
|
||
|
ktfmt().googleStyle()
|
||
|
target("src/**/*.kt", "**/*.kts")
|
||
|
}
|
||
|
format("xml") {
|
||
|
target("**/*.xml")
|
||
|
trimTrailingWhitespace()
|
||
|
indentWithSpaces()
|
||
|
endWithNewline()
|
||
|
}
|
||
|
}
|