b2d352e3ea
The Kotlin DSL's API is extremely terrible and makes the simplest tasks annoying. It also introduces a very noticeable build overhead that I'd rather not have. Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
15 lines
448 B
Groovy
15 lines
448 B
Groovy
/*
|
|
* 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()
|
|
}
|
|
}
|