aboutsummaryrefslogtreecommitdiff
path: root/spotless.gradle
blob: 10d5e620c57762bc98ef189922351d8382e8eb46 (about) (plain)
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
32
/*
 * Copyright © 2014-2020 The Android Password Store Authors. All Rights Reserved.
 * SPDX-License-Identifier: GPL-3.0-only
 */
apply plugin: 'com.diffplug.gradle.spotless'

spotless {
    format 'xml', {
        target '**/src/**/*.xml'
        indentWithSpaces(4)
        trimTrailingWhitespace()
        endWithNewline()
    }

    java {
        target '**/src/**/com/zeapo/pwdstore/*.java'
        trimTrailingWhitespace()
        licenseHeaderFile rootProject.file('spotless.license')
        removeUnusedImports()
        googleJavaFormat().aosp()
        endWithNewline()
    }

    kotlin {
        target '**/src/**/*.kt'
        ktlint('0.35.0').userData(['indent_size': '4', 'continuation_indent_size': '8'])
        licenseHeaderFile rootProject.file('spotless.license')
        trimTrailingWhitespace()
        indentWithSpaces()
        endWithNewline()
    }
}