diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-11-14 11:27:44 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2021-11-16 00:22:16 +0530 |
commit | c2e2e4f842919ba0eab3c4ce5be7fd3fad3ab328 (patch) | |
tree | 8bb045261988382c77b2f4d920825cd511265dab /build-logic/src/main | |
parent | cbadee43cd0cd3b1cd99d5cbcb271f27cbf13dd4 (diff) |
Convert build-logic to a proper included build
Diffstat (limited to 'build-logic/src/main')
-rw-r--r-- | build-logic/src/main/kotlin/com.github.android-password-store.spotless.gradle.kts | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/build-logic/src/main/kotlin/com.github.android-password-store.spotless.gradle.kts b/build-logic/src/main/kotlin/com.github.android-password-store.spotless.gradle.kts deleted file mode 100644 index 3d5e589d..00000000 --- a/build-logic/src/main/kotlin/com.github.android-password-store.spotless.gradle.kts +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved. - * SPDX-License-Identifier: GPL-3.0-only - */ -plugins { id("com.diffplug.spotless") } - -spotless { - kotlin { - ktfmt().googleStyle() - target("**/*.kt") - targetExclude("**/build/") - } - kotlinGradle { - ktfmt().googleStyle() - target("**/*.kts") - } - format("xml") { - target("**/*.xml") - targetExclude("**/build/", ".idea/") - trimTrailingWhitespace() - indentWithSpaces() - endWithNewline() - } -} |