summaryrefslogtreecommitdiff
path: root/spotless.root.gradle
blob: 9d5b3a868f135d669d160fd69829e20915c2ffba (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright © 2014-2019 The Android Password Store Authors. All Rights Reserved.
 * SPDX-License-Identifier: GPL-3.0-only
 */
apply plugin: 'com.diffplug.gradle.spotless'

spotless {
    groovyGradle {
        target '**/*.gradle', '*.gradle'
        licenseHeaderFile 'spotless.license', 'import|tasks|apply|plugins|include|buildscript|ext|android'
        trimTrailingWhitespace()
        indentWithSpaces()
        endWithNewline()
    }
}