We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d81b284 commit a60c9c1Copy full SHA for a60c9c1
gradle/java-module.gradle
@@ -472,9 +472,10 @@ spotless {
472
//Don't fail during the check: rather than enforcing guidelines, we use this plugin to fix mistakes automatically.
473
enforceCheck false
474
java {
475
- licenseHeaderFile rootProject.file('spotless.license.java')
+ targetExclude( "**/target/**/*.java" )
476
+ licenseHeaderFile rootProject.file( 'spotless.license.java' )
477
removeUnusedImports()
- indentWithTabs(4)
478
+ indentWithTabs( 4 )
479
trimTrailingWhitespace()
480
endWithNewline()
481
}
0 commit comments