We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f754872 commit b24aeadCopy full SHA for b24aead
2 files changed
build.gradle
@@ -15,6 +15,7 @@ plugins {
15
id 'com.modrinth.minotaur' version '2.+' apply false
16
id 'org.jetbrains.changelog' version '2.5.0'
17
id 'com.gradleup.shadow' version '9.4.+'
18
+ id 'com.diffplug.spotless' version '8.4.0'
19
}
20
21
apply from: 'gradle/scripts/helpers.gradle'
gradle/scripts/extra.gradle
@@ -3,3 +3,13 @@
3
4
// If you wish to use the default helper methods, uncomment the line below
5
// apply from: 'gradle/scripts/helpers.gradle'
6
+spotless {
7
+ java {
8
+ // Don't forget to change the path.
9
+ target 'src/*/java/com/vcwdfca/bb/**/*.java'
10
+
11
+ leadingTabsToSpaces()
12
+ endWithNewline()
13
+ removeUnusedImports()
14
+ }
+}
0 commit comments