Skip to content

Instantly share code, notes, and snippets.

@schroedermatt
Last active December 27, 2019 17:58
Show Gist options
  • Select an option

  • Save schroedermatt/115b1be3ec9dbd5e20758ad3f022d0f5 to your computer and use it in GitHub Desktop.

Select an option

Save schroedermatt/115b1be3ec9dbd5e20758ad3f022d0f5 to your computer and use it in GitHub Desktop.
Spotless Configuration
plugins {
id 'java'
id 'com.diffplug.gradle.spotless' version '3.26.1'
// other plugins
}
repositories { .. }
dependencies { .. }
spotless {
java {
// Enforce Google's Java Style Guide
googleJavaFormat()
}
}
// automatically format code to comply with spotlessJava
build.dependsOn 'spotlessApply'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment