aboutsummaryrefslogtreecommitdiff
path: root/spotless.gradle
diff options
context:
space:
mode:
authorHarsh Shandilya <msfjarvis@gmail.com>2019-11-06 19:41:15 +0530
committerHarsh Shandilya <msfjarvis@gmail.com>2019-11-06 19:41:15 +0530
commitb2d352e3ea671e84cc4f356a49786d1d3b2eaef6 (patch)
treee33d23a825d3eaa81bc2ce0bd6a621894a36adcc /spotless.gradle
parent3fcf242c0770eb043b85d9d0a16e408780cf7527 (diff)
Revert back to Groovy DSL
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>
Diffstat (limited to 'spotless.gradle')
-rw-r--r--spotless.gradle32
1 files changed, 32 insertions, 0 deletions
diff --git a/spotless.gradle b/spotless.gradle
new file mode 100644
index 00000000..301c4dd7
--- /dev/null
+++ b/spotless.gradle
@@ -0,0 +1,32 @@
+/*
+ * 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 {
+ format 'xml', {
+ target '**/src/**/*.xml'
+ indentWithSpaces(4)
+ trimTrailingWhitespace()
+ endWithNewline()
+ }
+
+ java {
+ target '**/src/**/*.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()
+ }
+}