2019-11-06 14:11:15 +00:00
|
|
|
/*
|
2020-01-29 19:30:20 +00:00
|
|
|
* Copyright © 2014-2020 The Android Password Store Authors. All Rights Reserved.
|
2019-11-06 14:11:15 +00:00
|
|
|
* 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()
|
|
|
|
}
|
|
|
|
}
|