Android-Password-Store/spotless.root.gradle
Harsh Shandilya d350a27611
Update license headers (#625)
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
2020-01-30 01:00:20 +05:30

15 lines
448 B
Groovy

/*
* 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 {
groovyGradle {
target '**/*.gradle', '*.gradle'
licenseHeaderFile 'spotless.license', 'import|tasks|apply|plugins|include|buildscript|ext|android'
trimTrailingWhitespace()
indentWithSpaces()
endWithNewline()
}
}