diff options
Diffstat (limited to 'spotless.root.gradle')
-rw-r--r-- | spotless.root.gradle | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/spotless.root.gradle b/spotless.root.gradle new file mode 100644 index 00000000..9d5b3a86 --- /dev/null +++ b/spotless.root.gradle @@ -0,0 +1,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() + } +} |